1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831
|
.\" Man page generated from reStructuredText.
.
.
.nr rst2man-indent-level 0
.
.de1 rstReportMargin
\\$1 \\n[an-margin]
level \\n[rst2man-indent-level]
level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
-
\\n[rst2man-indent0]
\\n[rst2man-indent1]
\\n[rst2man-indent2]
..
.de1 INDENT
.\" .rstReportMargin pre:
. RS \\$1
. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
. nr rst2man-indent-level +1
.\" .rstReportMargin post:
..
.de UNINDENT
. RE
.\" indent \\n[an-margin]
.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
.nr rst2man-indent-level -1
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.TH "DJANGO-ADMIN" "1" "April 03, 2023" "4.2" "Django"
.SH NAME
django-admin \- Utility script for the Django web framework
.sp
\fBdjango\-admin\fP is Django\(aqs command\-line utility for administrative tasks.
This document outlines all it can do.
.sp
In addition, \fBmanage.py\fP is automatically created in each Django project. It
does the same thing as \fBdjango\-admin\fP but also sets the
\fI\%DJANGO_SETTINGS_MODULE\fP environment variable so that it points to your
project\(aqs \fBsettings.py\fP file.
.sp
The \fBdjango\-admin\fP script should be on your system path if you installed
Django via \fBpip\fP\&. If it\(aqs not in your path, ensure you have your virtual
environment activated.
.sp
Generally, when working on a single Django project, it\(aqs easier to use
\fBmanage.py\fP than \fBdjango\-admin\fP\&. If you need to switch between multiple
Django settings files, use \fBdjango\-admin\fP with
\fI\%DJANGO_SETTINGS_MODULE\fP or the \fI\%\-\-settings\fP command line
option.
.sp
The command\-line examples throughout this document use \fBdjango\-admin\fP to
be consistent, but any example can use \fBmanage.py\fP or \fBpython \-m django\fP
just as well.
.SH USAGE
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
$ django\-admin <command> [options]
$ manage.py <command> [options]
$ python \-m django <command> [options]
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
\fBcommand\fP should be one of the commands listed in this document.
\fBoptions\fP, which is optional, should be zero or more of the options available
for the given command.
.SS Getting runtime help
.INDENT 0.0
.TP
.B django\-admin help
.UNINDENT
.sp
Run \fBdjango\-admin help\fP to display usage information and a list of the
commands provided by each application.
.sp
Run \fBdjango\-admin help \-\-commands\fP to display a list of all available
commands.
.sp
Run \fBdjango\-admin help <command>\fP to display a description of the given
command and a list of its available options.
.SS App names
.sp
Many commands take a list of \(dqapp names.\(dq An \(dqapp name\(dq is the basename of
the package containing your models. For example, if your \fI\%INSTALLED_APPS\fP
contains the string \fB\(aqmysite.blog\(aq\fP, the app name is \fBblog\fP\&.
.SS Determining the version
.INDENT 0.0
.TP
.B django\-admin version
.UNINDENT
.sp
Run \fBdjango\-admin version\fP to display the current Django version.
.sp
The output follows the schema described in \fI\%PEP 440\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
1.4.dev17026
1.4a1
1.4
.ft P
.fi
.UNINDENT
.UNINDENT
.SS Displaying debug output
.sp
Use \fI\%\-\-verbosity\fP, where it is supported, to specify the amount of
notification and debug information that \fBdjango\-admin\fP prints to the console.
.SH AVAILABLE COMMANDS
.SS \fBcheck\fP
.INDENT 0.0
.TP
.B django\-admin check [app_label [app_label ...]]
.UNINDENT
.sp
Uses the \fI\%system check framework\fP to inspect the entire
Django project for common problems.
.sp
By default, all apps will be checked. You can check a subset of apps by
providing a list of app labels as arguments:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin check auth admin myapp
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-tag TAGS, \-t TAGS
.UNINDENT
.sp
The system check framework performs many different types of checks that are
\fI\%categorized with tags\fP\&. You can use these
tags to restrict the checks performed to just those in a particular category.
For example, to perform only models and compatibility checks, run:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin check \-\-tag models \-\-tag compatibility
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database to run checks requiring database access:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin check \-\-database default \-\-database other
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
By default, these checks will not be run.
.INDENT 0.0
.TP
.B \-\-list\-tags
.UNINDENT
.sp
Lists all available tags.
.INDENT 0.0
.TP
.B \-\-deploy
.UNINDENT
.sp
Activates some additional checks that are only relevant in a deployment setting.
.sp
You can use this option in your local development environment, but since your
local development settings module may not have many of your production settings,
you will probably want to point the \fBcheck\fP command at a different settings
module, either by setting the \fI\%DJANGO_SETTINGS_MODULE\fP environment
variable, or by passing the \fB\-\-settings\fP option:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin check \-\-deploy \-\-settings=production_settings
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Or you could run it directly on a production or staging deployment to verify
that the correct settings are in use (omitting \fB\-\-settings\fP). You could even
make it part of your integration test suite.
.INDENT 0.0
.TP
.B \-\-fail\-level {CRITICAL,ERROR,WARNING,INFO,DEBUG}
.UNINDENT
.sp
Specifies the message level that will cause the command to exit with a non\-zero
status. Default is \fBERROR\fP\&.
.SS \fBcompilemessages\fP
.INDENT 0.0
.TP
.B django\-admin compilemessages
.UNINDENT
.sp
Compiles \fB\&.po\fP files created by \fI\%makemessages\fP to \fB\&.mo\fP files for
use with the built\-in gettext support. See \fI\%Internationalization and localization\fP\&.
.INDENT 0.0
.TP
.B \-\-locale LOCALE, \-l LOCALE
.UNINDENT
.sp
Specifies the locale(s) to process. If not provided, all locales are processed.
.INDENT 0.0
.TP
.B \-\-exclude EXCLUDE, \-x EXCLUDE
.UNINDENT
.sp
Specifies the locale(s) to exclude from processing. If not provided, no locales
are excluded.
.INDENT 0.0
.TP
.B \-\-use\-fuzzy, \-f
.UNINDENT
.sp
Includes \fI\%fuzzy translations\fP into compiled files.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin compilemessages \-\-locale=pt_BR
django\-admin compilemessages \-\-locale=pt_BR \-\-locale=fr \-f
django\-admin compilemessages \-l pt_BR
django\-admin compilemessages \-l pt_BR \-l fr \-\-use\-fuzzy
django\-admin compilemessages \-\-exclude=pt_BR
django\-admin compilemessages \-\-exclude=pt_BR \-\-exclude=fr
django\-admin compilemessages \-x pt_BR
django\-admin compilemessages \-x pt_BR \-x fr
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-ignore PATTERN, \-i PATTERN
.UNINDENT
.sp
Ignores directories matching the given \fI\%glob\fP\-style pattern. Use
multiple times to ignore more.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin compilemessages \-\-ignore=cache \-\-ignore=outdated/*/locale
.ft P
.fi
.UNINDENT
.UNINDENT
.SS \fBcreatecachetable\fP
.INDENT 0.0
.TP
.B django\-admin createcachetable
.UNINDENT
.sp
Creates the cache tables for use with the database cache backend using the
information from your settings file. See \fI\%Django\(aqs cache framework\fP for more
information.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database in which the cache table(s) will be created. Defaults to
\fBdefault\fP\&.
.INDENT 0.0
.TP
.B \-\-dry\-run
.UNINDENT
.sp
Prints the SQL that would be run without actually running it, so you can
customize it or use the migrations framework.
.SS \fBdbshell\fP
.INDENT 0.0
.TP
.B django\-admin dbshell
.UNINDENT
.sp
Runs the command\-line client for the database engine specified in your
\fI\%ENGINE\fP setting, with the connection parameters
specified in your \fI\%USER\fP, \fI\%PASSWORD\fP, etc., settings.
.INDENT 0.0
.IP \(bu 2
For PostgreSQL, this runs the \fBpsql\fP command\-line client.
.IP \(bu 2
For MySQL, this runs the \fBmysql\fP command\-line client.
.IP \(bu 2
For SQLite, this runs the \fBsqlite3\fP command\-line client.
.IP \(bu 2
For Oracle, this runs the \fBsqlplus\fP command\-line client.
.UNINDENT
.sp
This command assumes the programs are on your \fBPATH\fP so that a call to
the program name (\fBpsql\fP, \fBmysql\fP, \fBsqlite3\fP, \fBsqlplus\fP) will find the
program in the right place. There\(aqs no way to specify the location of the
program manually.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database onto which to open a shell. Defaults to \fBdefault\fP\&.
.INDENT 0.0
.TP
.B \-\- ARGUMENTS
.UNINDENT
.sp
Any arguments following a \fB\-\-\fP divider will be passed on to the underlying
command\-line client. For example, with PostgreSQL you can use the \fBpsql\fP
command\(aqs \fB\-c\fP flag to execute a raw SQL query directly:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
$ django\-admin dbshell \-\- \-c \(aqselect current_user\(aq
current_user
\-\-\-\-\-\-\-\-\-\-\-\-\-\-
postgres
(1 row)
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
On MySQL/MariaDB, you can do this with the \fBmysql\fP command\(aqs \fB\-e\fP flag:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
$ django\-admin dbshell \-\- \-e \(dqselect user()\(dq
+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
| user() |
+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
| djangonaut@localhost |
+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
\fBNOTE:\fP
.INDENT 0.0
.INDENT 3.5
Be aware that not all options set in the \fI\%OPTIONS\fP part of your
database configuration in \fI\%DATABASES\fP are passed to the
command\-line client, e.g. \fB\(aqisolation_level\(aq\fP\&.
.UNINDENT
.UNINDENT
.SS \fBdiffsettings\fP
.INDENT 0.0
.TP
.B django\-admin diffsettings
.UNINDENT
.sp
Displays differences between the current settings file and Django\(aqs default
settings (or another settings file specified by \fI\%\-\-default\fP).
.sp
Settings that don\(aqt appear in the defaults are followed by \fB\(dq###\(dq\fP\&. For
example, the default settings don\(aqt define \fI\%ROOT_URLCONF\fP, so
\fI\%ROOT_URLCONF\fP is followed by \fB\(dq###\(dq\fP in the output of
\fBdiffsettings\fP\&.
.INDENT 0.0
.TP
.B \-\-all
.UNINDENT
.sp
Displays all settings, even if they have Django\(aqs default value. Such settings
are prefixed by \fB\(dq###\(dq\fP\&.
.INDENT 0.0
.TP
.B \-\-default MODULE
.UNINDENT
.sp
The settings module to compare the current settings against. Leave empty to
compare against Django\(aqs default settings.
.INDENT 0.0
.TP
.B \-\-output {hash,unified}
.UNINDENT
.sp
Specifies the output format. Available values are \fBhash\fP and \fBunified\fP\&.
\fBhash\fP is the default mode that displays the output that\(aqs described above.
\fBunified\fP displays the output similar to \fBdiff \-u\fP\&. Default settings are
prefixed with a minus sign, followed by the changed setting prefixed with a
plus sign.
.SS \fBdumpdata\fP
.INDENT 0.0
.TP
.B django\-admin dumpdata [app_label[.ModelName] [app_label[.ModelName] ...]]
.UNINDENT
.sp
Outputs to standard output all data in the database associated with the named
application(s).
.sp
If no application name is provided, all installed applications will be dumped.
.sp
The output of \fBdumpdata\fP can be used as input for \fI\%loaddata\fP\&.
.sp
When result of \fBdumpdata\fP is saved as a file, it can serve as a
\fI\%fixture\fP for
\fI\%tests\fP or as an
\fI\%initial data\fP\&.
.sp
Note that \fBdumpdata\fP uses the default manager on the model for selecting the
records to dump. If you\(aqre using a \fI\%custom manager\fP as
the default manager and it filters some of the available records, not all of the
objects will be dumped.
.INDENT 0.0
.TP
.B \-\-all, \-a
.UNINDENT
.sp
Uses Django\(aqs base manager, dumping records which might otherwise be filtered
or modified by a custom manager.
.INDENT 0.0
.TP
.B \-\-format FORMAT
.UNINDENT
.sp
Specifies the serialization format of the output. Defaults to JSON. Supported
formats are listed in \fI\%Serialization formats\fP\&.
.INDENT 0.0
.TP
.B \-\-indent INDENT
.UNINDENT
.sp
Specifies the number of indentation spaces to use in the output. Defaults to
\fBNone\fP which displays all data on single line.
.INDENT 0.0
.TP
.B \-\-exclude EXCLUDE, \-e EXCLUDE
.UNINDENT
.sp
Prevents specific applications or models (specified in the form of
\fBapp_label.ModelName\fP) from being dumped. If you specify a model name, then
only that model will be excluded, rather than the entire application. You can
also mix application names and model names.
.sp
If you want to exclude multiple applications, pass \fB\-\-exclude\fP more than
once:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin dumpdata \-\-exclude=auth \-\-exclude=contenttypes
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database from which data will be dumped. Defaults to \fBdefault\fP\&.
.INDENT 0.0
.TP
.B \-\-natural\-foreign
.UNINDENT
.sp
Uses the \fBnatural_key()\fP model method to serialize any foreign key and
many\-to\-many relationship to objects of the type that defines the method. If
you\(aqre dumping \fBcontrib.auth\fP \fBPermission\fP objects or
\fBcontrib.contenttypes\fP \fBContentType\fP objects, you should probably use this
flag. See the \fI\%natural keys\fP
documentation for more details on this and the next option.
.INDENT 0.0
.TP
.B \-\-natural\-primary
.UNINDENT
.sp
Omits the primary key in the serialized data of this object since it can be
calculated during deserialization.
.INDENT 0.0
.TP
.B \-\-pks PRIMARY_KEYS
.UNINDENT
.sp
Outputs only the objects specified by a comma separated list of primary keys.
This is only available when dumping one model. By default, all the records of
the model are output.
.INDENT 0.0
.TP
.B \-\-output OUTPUT, \-o OUTPUT
.UNINDENT
.sp
Specifies a file to write the serialized data to. By default, the data goes to
standard output.
.sp
When this option is set and \fB\-\-verbosity\fP is greater than 0 (the default), a
progress bar is shown in the terminal.
.SS Fixtures compression
.sp
The output file can be compressed with one of the \fBbz2\fP, \fBgz\fP, \fBlzma\fP, or
\fBxz\fP formats by ending the filename with the corresponding extension.
For example, to output the data as a compressed JSON file:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin dumpdata \-o mydata.json.gz
.ft P
.fi
.UNINDENT
.UNINDENT
.SS \fBflush\fP
.INDENT 0.0
.TP
.B django\-admin flush
.UNINDENT
.sp
Removes all data from the database and re\-executes any post\-synchronization
handlers. The table of which migrations have been applied is not cleared.
.sp
If you would rather start from an empty database and rerun all migrations, you
should drop and recreate the database and then run \fI\%migrate\fP instead.
.INDENT 0.0
.TP
.B \-\-noinput, \-\-no\-input
.UNINDENT
.sp
Suppresses all user prompts.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database to flush. Defaults to \fBdefault\fP\&.
.SS \fBinspectdb\fP
.INDENT 0.0
.TP
.B django\-admin inspectdb [table [table ...]]
.UNINDENT
.sp
Introspects the database tables in the database pointed\-to by the
\fI\%NAME\fP setting and outputs a Django model module (a \fBmodels.py\fP
file) to standard output.
.sp
You may choose what tables or views to inspect by passing their names as
arguments. If no arguments are provided, models are created for views only if
the \fI\%\-\-include\-views\fP option is used. Models for partition tables are
created on PostgreSQL if the \fI\%\-\-include\-partitions\fP option is used.
.sp
Use this if you have a legacy database with which you\(aqd like to use Django.
The script will inspect the database and create a model for each table within
it.
.sp
As you might expect, the created models will have an attribute for every field
in the table. Note that \fBinspectdb\fP has a few special cases in its field\-name
output:
.INDENT 0.0
.IP \(bu 2
If \fBinspectdb\fP cannot map a column\(aqs type to a model field type, it\(aqll
use \fBTextField\fP and will insert the Python comment
\fB\(aqThis field type is a guess.\(aq\fP next to the field in the generated
model. The recognized fields may depend on apps listed in
\fI\%INSTALLED_APPS\fP\&. For example, \fI\%django.contrib.postgres\fP adds
recognition for several PostgreSQL\-specific field types.
.IP \(bu 2
If the database column name is a Python reserved word (such as
\fB\(aqpass\(aq\fP, \fB\(aqclass\(aq\fP or \fB\(aqfor\(aq\fP), \fBinspectdb\fP will append
\fB\(aq_field\(aq\fP to the attribute name. For example, if a table has a column
\fB\(aqfor\(aq\fP, the generated model will have a field \fB\(aqfor_field\(aq\fP, with
the \fBdb_column\fP attribute set to \fB\(aqfor\(aq\fP\&. \fBinspectdb\fP will insert
the Python comment
\fB\(aqField renamed because it was a Python reserved word.\(aq\fP next to the
field.
.UNINDENT
.sp
This feature is meant as a shortcut, not as definitive model generation. After
you run it, you\(aqll want to look over the generated models yourself to make
customizations. In particular, you\(aqll need to rearrange models\(aq order, so that
models that refer to other models are ordered properly.
.sp
Django doesn\(aqt create database defaults when a
\fI\%default\fP is specified on a model field.
Similarly, database defaults aren\(aqt translated to model field defaults or
detected in any fashion by \fBinspectdb\fP\&.
.sp
By default, \fBinspectdb\fP creates unmanaged models. That is, \fBmanaged = False\fP
in the model\(aqs \fBMeta\fP class tells Django not to manage each table\(aqs creation,
modification, and deletion. If you do want to allow Django to manage the
table\(aqs lifecycle, you\(aqll need to change the
\fI\%managed\fP option to \fBTrue\fP (or remove
it because \fBTrue\fP is its default value).
.SS Database\-specific notes
.SS Oracle
.INDENT 0.0
.IP \(bu 2
Models are created for materialized views if \fI\%\-\-include\-views\fP is
used.
.UNINDENT
.SS PostgreSQL
.INDENT 0.0
.IP \(bu 2
Models are created for foreign tables.
.IP \(bu 2
Models are created for materialized views if
\fI\%\-\-include\-views\fP is used.
.IP \(bu 2
Models are created for partition tables if
\fI\%\-\-include\-partitions\fP is used.
.UNINDENT
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database to introspect. Defaults to \fBdefault\fP\&.
.INDENT 0.0
.TP
.B \-\-include\-partitions
.UNINDENT
.sp
If this option is provided, models are also created for partitions.
.sp
Only support for PostgreSQL is implemented.
.INDENT 0.0
.TP
.B \-\-include\-views
.UNINDENT
.sp
If this option is provided, models are also created for database views.
.SS \fBloaddata\fP
.INDENT 0.0
.TP
.B django\-admin loaddata fixture [fixture ...]
.UNINDENT
.sp
Searches for and loads the contents of the named
\fI\%fixture\fP into the database.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database into which the data will be loaded. Defaults to
\fBdefault\fP\&.
.INDENT 0.0
.TP
.B \-\-ignorenonexistent, \-i
.UNINDENT
.sp
Ignores fields and models that may have been removed since the fixture was
originally generated.
.INDENT 0.0
.TP
.B \-\-app APP_LABEL
.UNINDENT
.sp
Specifies a single app to look for fixtures in rather than looking in all apps.
.INDENT 0.0
.TP
.B \-\-format FORMAT
.UNINDENT
.sp
Specifies the \fI\%serialization format\fP (e.g.,
\fBjson\fP or \fBxml\fP) for fixtures \fI\%read from stdin\fP\&.
.INDENT 0.0
.TP
.B \-\-exclude EXCLUDE, \-e EXCLUDE
.UNINDENT
.sp
Excludes loading the fixtures from the given applications and/or models (in the
form of \fBapp_label\fP or \fBapp_label.ModelName\fP). Use the option multiple
times to exclude more than one app or model.
.SS Loading fixtures from \fBstdin\fP
.sp
You can use a dash as the fixture name to load input from \fBsys.stdin\fP\&. For
example:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin loaddata \-\-format=json \-
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
When reading from \fBstdin\fP, the \fI\%\-\-format\fP option
is required to specify the \fI\%serialization format\fP
of the input (e.g., \fBjson\fP or \fBxml\fP).
.sp
Loading from \fBstdin\fP is useful with standard input and output redirections.
For example:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin dumpdata \-\-format=json \-\-database=test app_label.ModelName | django\-admin loaddata \-\-format=json \-\-database=prod \-
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
The \fI\%dumpdata\fP command can be used to generate input for \fBloaddata\fP\&.
.sp
\fBSEE ALSO:\fP
.INDENT 0.0
.INDENT 3.5
For more detail about fixtures see the \fI\%Fixtures\fP topic.
.UNINDENT
.UNINDENT
.SS \fBmakemessages\fP
.INDENT 0.0
.TP
.B django\-admin makemessages
.UNINDENT
.sp
Runs over the entire source tree of the current directory and pulls out all
strings marked for translation. It creates (or updates) a message file in the
conf/locale (in the Django tree) or locale (for project and application)
directory. After making changes to the messages files you need to compile them
with \fI\%compilemessages\fP for use with the builtin gettext support. See
the \fI\%i18n documentation\fP for details.
.sp
This command doesn\(aqt require configured settings. However, when settings aren\(aqt
configured, the command can\(aqt ignore the \fI\%MEDIA_ROOT\fP and
\fI\%STATIC_ROOT\fP directories or include \fI\%LOCALE_PATHS\fP\&.
.INDENT 0.0
.TP
.B \-\-all, \-a
.UNINDENT
.sp
Updates the message files for all available languages.
.INDENT 0.0
.TP
.B \-\-extension EXTENSIONS, \-e EXTENSIONS
.UNINDENT
.sp
Specifies a list of file extensions to examine (default: \fBhtml\fP, \fBtxt\fP,
\fBpy\fP or \fBjs\fP if \fI\%\-\-domain\fP is \fBjs\fP).
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin makemessages \-\-locale=de \-\-extension xhtml
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Separate multiple extensions with commas or use \fB\-e\fP or \fB\-\-extension\fP
multiple times:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin makemessages \-\-locale=de \-\-extension=html,txt \-\-extension xml
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-locale LOCALE, \-l LOCALE
.UNINDENT
.sp
Specifies the locale(s) to process.
.INDENT 0.0
.TP
.B \-\-exclude EXCLUDE, \-x EXCLUDE
.UNINDENT
.sp
Specifies the locale(s) to exclude from processing. If not provided, no locales
are excluded.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin makemessages \-\-locale=pt_BR
django\-admin makemessages \-\-locale=pt_BR \-\-locale=fr
django\-admin makemessages \-l pt_BR
django\-admin makemessages \-l pt_BR \-l fr
django\-admin makemessages \-\-exclude=pt_BR
django\-admin makemessages \-\-exclude=pt_BR \-\-exclude=fr
django\-admin makemessages \-x pt_BR
django\-admin makemessages \-x pt_BR \-x fr
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-domain DOMAIN, \-d DOMAIN
.UNINDENT
.sp
Specifies the domain of the messages files. Supported options are:
.INDENT 0.0
.IP \(bu 2
\fBdjango\fP for all \fB*.py\fP, \fB*.html\fP and \fB*.txt\fP files (default)
.IP \(bu 2
\fBdjangojs\fP for \fB*.js\fP files
.UNINDENT
.INDENT 0.0
.TP
.B \-\-symlinks, \-s
.UNINDENT
.sp
Follows symlinks to directories when looking for new translation strings.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin makemessages \-\-locale=de \-\-symlinks
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-ignore PATTERN, \-i PATTERN
.UNINDENT
.sp
Ignores files or directories matching the given \fI\%glob\fP\-style pattern. Use
multiple times to ignore more.
.sp
These patterns are used by default: \fB\(aqCVS\(aq\fP, \fB\(aq.*\(aq\fP, \fB\(aq*~\(aq\fP, \fB\(aq*.pyc\(aq\fP\&.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin makemessages \-\-locale=en_US \-\-ignore=apps/* \-\-ignore=secret/*.html
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-no\-default\-ignore
.UNINDENT
.sp
Disables the default values of \fB\-\-ignore\fP\&.
.INDENT 0.0
.TP
.B \-\-no\-wrap
.UNINDENT
.sp
Disables breaking long message lines into several lines in language files.
.INDENT 0.0
.TP
.B \-\-no\-location
.UNINDENT
.sp
Suppresses writing \(aq\fB#: filename:line\fP’ comment lines in language files.
Using this option makes it harder for technically skilled translators to
understand each message\(aqs context.
.INDENT 0.0
.TP
.B \-\-add\-location [{full,file,never}]
.UNINDENT
.sp
Controls \fB#: filename:line\fP comment lines in language files. If the option
is:
.INDENT 0.0
.IP \(bu 2
\fBfull\fP (the default if not given): the lines include both file name and
line number.
.IP \(bu 2
\fBfile\fP: the line number is omitted.
.IP \(bu 2
\fBnever\fP: the lines are suppressed (same as \fI\%\-\-no\-location\fP).
.UNINDENT
.sp
Requires \fBgettext\fP 0.19 or newer.
.INDENT 0.0
.TP
.B \-\-keep\-pot
.UNINDENT
.sp
Prevents deleting the temporary \fB\&.pot\fP files generated before creating the
\fB\&.po\fP file. This is useful for debugging errors which may prevent the final
language files from being created.
.sp
\fBSEE ALSO:\fP
.INDENT 0.0
.INDENT 3.5
See \fI\%Customizing the makemessages command\fP for instructions on how to customize
the keywords that \fI\%makemessages\fP passes to \fBxgettext\fP\&.
.UNINDENT
.UNINDENT
.SS \fBmakemigrations\fP
.INDENT 0.0
.TP
.B django\-admin makemigrations [app_label [app_label ...]]
.UNINDENT
.sp
Creates new migrations based on the changes detected to your models.
Migrations, their relationship with apps and more are covered in depth in
\fI\%the migrations documentation\fP\&.
.sp
Providing one or more app names as arguments will limit the migrations created
to the app(s) specified and any dependencies needed (the table at the other end
of a \fBForeignKey\fP, for example).
.sp
To add migrations to an app that doesn\(aqt have a \fBmigrations\fP directory, run
\fBmakemigrations\fP with the app\(aqs \fBapp_label\fP\&.
.INDENT 0.0
.TP
.B \-\-noinput, \-\-no\-input
.UNINDENT
.sp
Suppresses all user prompts. If a suppressed prompt cannot be resolved
automatically, the command will exit with error code 3.
.INDENT 0.0
.TP
.B \-\-empty
.UNINDENT
.sp
Outputs an empty migration for the specified apps, for manual editing. This is
for advanced users and should not be used unless you are familiar with the
migration format, migration operations, and the dependencies between your
migrations.
.INDENT 0.0
.TP
.B \-\-dry\-run
.UNINDENT
.sp
Shows what migrations would be made without actually writing any migrations
files to disk. Using this option along with \fB\-\-verbosity 3\fP will also show
the complete migrations files that would be written.
.INDENT 0.0
.TP
.B \-\-merge
.UNINDENT
.sp
Enables fixing of migration conflicts.
.INDENT 0.0
.TP
.B \-\-name NAME, \-n NAME
.UNINDENT
.sp
Allows naming the generated migration(s) instead of using a generated name. The
name must be a valid Python \fI\%identifier\fP\&.
.INDENT 0.0
.TP
.B \-\-no\-header
.UNINDENT
.sp
Generate migration files without Django version and timestamp header.
.INDENT 0.0
.TP
.B \-\-check
.UNINDENT
.sp
Makes \fBmakemigrations\fP exit with a non\-zero status when model changes without
migrations are detected.
.sp
In older versions, the missing migrations were also created when using the
\fB\-\-check\fP option.
.INDENT 0.0
.TP
.B \-\-scriptable
.UNINDENT
.sp
.sp
Diverts log output and input prompts to \fBstderr\fP, writing only paths of
generated migration files to \fBstdout\fP\&.
.INDENT 0.0
.TP
.B \-\-update
.UNINDENT
.sp
.sp
Merges model changes into the latest migration and optimize the resulting
operations.
.SS \fBmigrate\fP
.INDENT 0.0
.TP
.B django\-admin migrate [app_label] [migration_name]
.UNINDENT
.sp
Synchronizes the database state with the current set of models and migrations.
Migrations, their relationship with apps and more are covered in depth in
\fI\%the migrations documentation\fP\&.
.sp
The behavior of this command changes depending on the arguments provided:
.INDENT 0.0
.IP \(bu 2
No arguments: All apps have all of their migrations run.
.IP \(bu 2
\fB<app_label>\fP: The specified app has its migrations run, up to the most
recent migration. This may involve running other apps\(aq migrations too, due
to dependencies.
.IP \(bu 2
\fB<app_label> <migrationname>\fP: Brings the database schema to a state where
the named migration is applied, but no later migrations in the same app are
applied. This may involve unapplying migrations if you have previously
migrated past the named migration. You can use a prefix of the migration
name, e.g. \fB0001\fP, as long as it\(aqs unique for the given app name. Use the
name \fBzero\fP to migrate all the way back i.e. to revert all applied
migrations for an app.
.UNINDENT
.sp
\fBWARNING:\fP
.INDENT 0.0
.INDENT 3.5
When unapplying migrations, all dependent migrations will also be
unapplied, regardless of \fB<app_label>\fP\&. You can use \fB\-\-plan\fP to check
which migrations will be unapplied.
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database to migrate. Defaults to \fBdefault\fP\&.
.INDENT 0.0
.TP
.B \-\-fake
.UNINDENT
.sp
Marks the migrations up to the target one (following the rules above) as
applied, but without actually running the SQL to change your database schema.
.sp
This is intended for advanced users to manipulate the
current migration state directly if they\(aqre manually applying changes;
be warned that using \fB\-\-fake\fP runs the risk of putting the migration state
table into a state where manual recovery will be needed to make migrations
run correctly.
.INDENT 0.0
.TP
.B \-\-fake\-initial
.UNINDENT
.sp
Allows Django to skip an app\(aqs initial migration if all database tables with
the names of all models created by all
\fI\%CreateModel\fP operations in that
migration already exist. This option is intended for use when first running
migrations against a database that preexisted the use of migrations. This
option does not, however, check for matching database schema beyond matching
table names and so is only safe to use if you are confident that your existing
schema matches what is recorded in your initial migration.
.INDENT 0.0
.TP
.B \-\-plan
.UNINDENT
.sp
Shows the migration operations that will be performed for the given \fBmigrate\fP
command.
.INDENT 0.0
.TP
.B \-\-run\-syncdb
.UNINDENT
.sp
Allows creating tables for apps without migrations. While this isn\(aqt
recommended, the migrations framework is sometimes too slow on large projects
with hundreds of models.
.INDENT 0.0
.TP
.B \-\-noinput, \-\-no\-input
.UNINDENT
.sp
Suppresses all user prompts. An example prompt is asking about removing stale
content types.
.INDENT 0.0
.TP
.B \-\-check
.UNINDENT
.sp
Makes \fBmigrate\fP exit with a non\-zero status when unapplied migrations are
detected.
.INDENT 0.0
.TP
.B \-\-prune
.UNINDENT
.sp
.sp
Deletes nonexistent migrations from the \fBdjango_migrations\fP table. This is
useful when migration files replaced by a squashed migration have been removed.
See \fI\%Squashing migrations\fP for more details.
.SS \fBoptimizemigration\fP
.sp
.INDENT 0.0
.TP
.B django\-admin optimizemigration app_label migration_name
.UNINDENT
.sp
Optimizes the operations for the named migration and overrides the existing
file. If the migration contains functions that must be manually copied, the
command creates a new migration file suffixed with \fB_optimized\fP that is meant
to replace the named migration.
.INDENT 0.0
.TP
.B \-\-check
.UNINDENT
.sp
Makes \fBoptimizemigration\fP exit with a non\-zero status when a migration can be
optimized.
.SS \fBrunserver\fP
.INDENT 0.0
.TP
.B django\-admin runserver [addrport]
.UNINDENT
.sp
Starts a lightweight development web server on the local machine. By default,
the server runs on port 8000 on the IP address \fB127.0.0.1\fP\&. You can pass in an
IP address and port number explicitly.
.sp
If you run this script as a user with normal privileges (recommended), you
might not have access to start a port on a low port number. Low port numbers
are reserved for the superuser (root).
.sp
This server uses the WSGI application object specified by the
\fI\%WSGI_APPLICATION\fP setting.
.sp
DO NOT USE THIS SERVER IN A PRODUCTION SETTING. It has not gone through
security audits or performance tests. (And that\(aqs how it\(aqs gonna stay. We\(aqre in
the business of making web frameworks, not web servers, so improving this
server to be able to handle a production environment is outside the scope of
Django.)
.sp
The development server automatically reloads Python code for each request, as
needed. You don\(aqt need to restart the server for code changes to take effect.
However, some actions like adding files don\(aqt trigger a restart, so you\(aqll
have to restart the server in these cases.
.sp
If you\(aqre using Linux or MacOS and install both \fI\%pywatchman\fP and the
\fI\%Watchman\fP service, kernel signals will be used to autoreload the server
(rather than polling file modification timestamps each second). This offers
better performance on large projects, reduced response time after code changes,
more robust change detection, and a reduction in power usage. Django supports
\fBpywatchman\fP 1.2.0 and higher.
.INDENT 0.0
.INDENT 3.5
.IP "Large directories with many files may cause performance issues"
.sp
When using Watchman with a project that includes large non\-Python
directories like \fBnode_modules\fP, it\(aqs advisable to ignore this directory
for optimal performance. See the \fI\%watchman documentation\fP for information
on how to do this.
.UNINDENT
.UNINDENT
.INDENT 0.0
.INDENT 3.5
.IP "Watchman timeout"
.INDENT 0.0
.TP
.B DJANGO_WATCHMAN_TIMEOUT
.UNINDENT
.sp
The default timeout of \fBWatchman\fP client is 5 seconds. You can change it
by setting the \fI\%DJANGO_WATCHMAN_TIMEOUT\fP environment variable.
.UNINDENT
.UNINDENT
.sp
When you start the server, and each time you change Python code while the
server is running, the system check framework will check your entire Django
project for some common errors (see the \fI\%check\fP command). If any
errors are found, they will be printed to standard output. You can use the
\fB\-\-skip\-checks\fP option to skip running system checks.
.sp
You can run as many concurrent servers as you want, as long as they\(aqre on
separate ports by executing \fBdjango\-admin runserver\fP more than once.
.sp
Note that the default IP address, \fB127.0.0.1\fP, is not accessible from other
machines on your network. To make your development server viewable to other
machines on the network, use its own IP address (e.g. \fB192.168.2.1\fP), \fB0\fP
(shortcut for \fB0.0.0.0\fP), \fB0.0.0.0\fP, or \fB::\fP (with IPv6 enabled).
.sp
You can provide an IPv6 address surrounded by brackets
(e.g. \fB[200a::1]:8000\fP). This will automatically enable IPv6 support.
.sp
A hostname containing ASCII\-only characters can also be used.
.sp
If the \fI\%staticfiles\fP contrib app is enabled
(default in new projects) the \fI\%runserver\fP command will be overridden
with its own \fI\%runserver\fP command.
.sp
Logging of each request and response of the server is sent to the
\fI\%django.server\fP logger.
.INDENT 0.0
.TP
.B \-\-noreload
.UNINDENT
.sp
Disables the auto\-reloader. This means any Python code changes you make while
the server is running will \fInot\fP take effect if the particular Python modules
have already been loaded into memory.
.INDENT 0.0
.TP
.B \-\-nothreading
.UNINDENT
.sp
Disables use of threading in the development server. The server is
multithreaded by default.
.INDENT 0.0
.TP
.B \-\-ipv6, \-6
.UNINDENT
.sp
Uses IPv6 for the development server. This changes the default IP address from
\fB127.0.0.1\fP to \fB::1\fP\&.
.SS Examples of using different ports and addresses
.sp
Port 8000 on IP address \fB127.0.0.1\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Port 8000 on IP address \fB1.2.3.4\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver 1.2.3.4:8000
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Port 7000 on IP address \fB127.0.0.1\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver 7000
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Port 7000 on IP address \fB1.2.3.4\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver 1.2.3.4:7000
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Port 8000 on IPv6 address \fB::1\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver \-6
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Port 7000 on IPv6 address \fB::1\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver \-6 7000
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Port 7000 on IPv6 address \fB2001:0db8:1234:5678::9\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver [2001:0db8:1234:5678::9]:7000
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Port 8000 on IPv4 address of host \fBlocalhost\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver localhost:8000
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Port 8000 on IPv6 address of host \fBlocalhost\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver \-6 localhost:8000
.ft P
.fi
.UNINDENT
.UNINDENT
.SS Serving static files with the development server
.sp
By default, the development server doesn\(aqt serve any static files for your site
(such as CSS files, images, things under \fI\%MEDIA_URL\fP and so forth). If
you want to configure Django to serve static media, read
\fI\%How to manage static files (e.g. images, JavaScript, CSS)\fP\&.
.SS Serving with ASGI in development
.sp
Django\(aqs \fBrunserver\fP command provides a WSGI server. In order to run under
ASGI you will need to use an \fI\%ASGI server\fP\&.
The Django Daphne project provides \fI\%Integration with runserver\fP that you can use.
.SS \fBsendtestemail\fP
.INDENT 0.0
.TP
.B django\-admin sendtestemail [email [email ...]]
.UNINDENT
.sp
Sends a test email (to confirm email sending through Django is working) to the
recipient(s) specified. For example:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin sendtestemail foo@example.com bar@example.com
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
There are a couple of options, and you may use any combination of them
together:
.INDENT 0.0
.TP
.B \-\-managers
.UNINDENT
.sp
Mails the email addresses specified in \fI\%MANAGERS\fP using
\fI\%mail_managers()\fP\&.
.INDENT 0.0
.TP
.B \-\-admins
.UNINDENT
.sp
Mails the email addresses specified in \fI\%ADMINS\fP using
\fI\%mail_admins()\fP\&.
.SS \fBshell\fP
.INDENT 0.0
.TP
.B django\-admin shell
.UNINDENT
.sp
Starts the Python interactive interpreter.
.INDENT 0.0
.TP
.B \-\-interface {ipython,bpython,python}, \-i {ipython,bpython,python}
.UNINDENT
.sp
Specifies the shell to use. By default, Django will use \fI\%IPython\fP or \fI\%bpython\fP if
either is installed. If both are installed, specify which one you want like so:
.sp
IPython:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin shell \-i ipython
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
bpython:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin shell \-i bpython
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
If you have a \(dqrich\(dq shell installed but want to force use of the \(dqplain\(dq
Python interpreter, use \fBpython\fP as the interface name, like so:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin shell \-i python
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-nostartup
.UNINDENT
.sp
Disables reading the startup script for the \(dqplain\(dq Python interpreter. By
default, the script pointed to by the \fI\%PYTHONSTARTUP\fP environment
variable or the \fB~/.pythonrc.py\fP script is read.
.INDENT 0.0
.TP
.B \-\-command COMMAND, \-c COMMAND
.UNINDENT
.sp
Lets you pass a command as a string to execute it as Django, like so:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin shell \-\-command=\(dqimport django; print(django.__version__)\(dq
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
You can also pass code in on standard input to execute it. For example:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
$ django\-admin shell <<EOF
> import django
> print(django.__version__)
> EOF
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
On Windows, the REPL is output due to implementation limits of
\fI\%select.select()\fP on that platform.
.SS \fBshowmigrations\fP
.INDENT 0.0
.TP
.B django\-admin showmigrations [app_label [app_label ...]]
.UNINDENT
.sp
Shows all migrations in a project. You can choose from one of two formats:
.INDENT 0.0
.TP
.B \-\-list, \-l
.UNINDENT
.sp
Lists all of the apps Django knows about, the migrations available for each
app, and whether or not each migration is applied (marked by an \fB[X]\fP next to
the migration name). For a \fB\-\-verbosity\fP of 2 and above, the applied
datetimes are also shown.
.sp
Apps without migrations are also listed, but have \fB(no migrations)\fP printed
under them.
.sp
This is the default output format.
.INDENT 0.0
.TP
.B \-\-plan, \-p
.UNINDENT
.sp
Shows the migration plan Django will follow to apply migrations. Like
\fB\-\-list\fP, applied migrations are marked by an \fB[X]\fP\&. For a \fB\-\-verbosity\fP
of 2 and above, all dependencies of a migration will also be shown.
.sp
\fBapp_label\fPs arguments limit the output, however, dependencies of provided
apps may also be included.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database to examine. Defaults to \fBdefault\fP\&.
.SS \fBsqlflush\fP
.INDENT 0.0
.TP
.B django\-admin sqlflush
.UNINDENT
.sp
Prints the SQL statements that would be executed for the \fI\%flush\fP
command.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database for which to print the SQL. Defaults to \fBdefault\fP\&.
.SS \fBsqlmigrate\fP
.INDENT 0.0
.TP
.B django\-admin sqlmigrate app_label migration_name
.UNINDENT
.sp
Prints the SQL for the named migration. This requires an active database
connection, which it will use to resolve constraint names; this means you must
generate the SQL against a copy of the database you wish to later apply it on.
.sp
Note that \fBsqlmigrate\fP doesn\(aqt colorize its output.
.INDENT 0.0
.TP
.B \-\-backwards
.UNINDENT
.sp
Generates the SQL for unapplying the migration. By default, the SQL created is
for running the migration in the forwards direction.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database for which to generate the SQL. Defaults to \fBdefault\fP\&.
.SS \fBsqlsequencereset\fP
.INDENT 0.0
.TP
.B django\-admin sqlsequencereset app_label [app_label ...]
.UNINDENT
.sp
Prints the SQL statements for resetting sequences for the given app name(s).
.sp
Sequences are indexes used by some database engines to track the next available
number for automatically incremented fields.
.sp
Use this command to generate SQL which will fix cases where a sequence is out
of sync with its automatically incremented field data.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database for which to print the SQL. Defaults to \fBdefault\fP\&.
.SS \fBsquashmigrations\fP
.INDENT 0.0
.TP
.B django\-admin squashmigrations app_label [start_migration_name] migration_name
.UNINDENT
.sp
Squashes the migrations for \fBapp_label\fP up to and including \fBmigration_name\fP
down into fewer migrations, if possible. The resulting squashed migrations
can live alongside the unsquashed ones safely. For more information,
please read \fI\%Squashing migrations\fP\&.
.sp
When \fBstart_migration_name\fP is given, Django will only include migrations
starting from and including this migration. This helps to mitigate the
squashing limitation of \fI\%RunPython\fP and
\fI\%django.db.migrations.operations.RunSQL\fP migration operations.
.INDENT 0.0
.TP
.B \-\-no\-optimize
.UNINDENT
.sp
Disables the optimizer when generating a squashed migration. By default, Django
will try to optimize the operations in your migrations to reduce the size of
the resulting file. Use this option if this process is failing or creating
incorrect migrations, though please also file a Django bug report about the
behavior, as optimization is meant to be safe.
.INDENT 0.0
.TP
.B \-\-noinput, \-\-no\-input
.UNINDENT
.sp
Suppresses all user prompts.
.INDENT 0.0
.TP
.B \-\-squashed\-name SQUASHED_NAME
.UNINDENT
.sp
Sets the name of the squashed migration. When omitted, the name is based on the
first and last migration, with \fB_squashed_\fP in between.
.INDENT 0.0
.TP
.B \-\-no\-header
.UNINDENT
.sp
Generate squashed migration file without Django version and timestamp header.
.SS \fBstartapp\fP
.INDENT 0.0
.TP
.B django\-admin startapp name [directory]
.UNINDENT
.sp
Creates a Django app directory structure for the given app name in the current
directory or the given destination.
.sp
By default, \fI\%the new directory\fP contains a
\fBmodels.py\fP file and other app template files. If only the app name is given,
the app directory will be created in the current working directory.
.sp
If the optional destination is provided, Django will use that existing
directory rather than creating a new one. You can use \(aq.\(aq to denote the current
working directory.
.sp
For example:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin startapp myapp /Users/jezdez/Code/myapp
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-template TEMPLATE
.UNINDENT
.sp
Provides the path to a directory with a custom app template file, or a path to
an uncompressed archive (\fB\&.tar\fP) or a compressed archive (\fB\&.tar.gz\fP,
\fB\&.tar.bz2\fP, \fB\&.tar.xz\fP, \fB\&.tar.lzma\fP, \fB\&.tgz\fP, \fB\&.tbz2\fP, \fB\&.txz\fP,
\fB\&.tlz\fP, \fB\&.zip\fP) containing the app template files.
.sp
For example, this would look for an app template in the given directory when
creating the \fBmyapp\fP app:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin startapp \-\-template=/Users/jezdez/Code/my_app_template myapp
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Django will also accept URLs (\fBhttp\fP, \fBhttps\fP, \fBftp\fP) to compressed
archives with the app template files, downloading and extracting them on the
fly.
.sp
For example, taking advantage of GitHub\(aqs feature to expose repositories as
zip files, you can use a URL like:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin startapp \-\-template=https://github.com/githubuser/django\-app\-template/archive/main.zip myapp
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-extension EXTENSIONS, \-e EXTENSIONS
.UNINDENT
.sp
Specifies which file extensions in the app template should be rendered with the
template engine. Defaults to \fBpy\fP\&.
.INDENT 0.0
.TP
.B \-\-name FILES, \-n FILES
.UNINDENT
.sp
Specifies which files in the app template (in addition to those matching
\fB\-\-extension\fP) should be rendered with the template engine. Defaults to an
empty list.
.INDENT 0.0
.TP
.B \-\-exclude DIRECTORIES, \-x DIRECTORIES
.UNINDENT
.sp
Specifies which directories in the app template should be excluded, in addition
to \fB\&.git\fP and \fB__pycache__\fP\&. If this option is not provided, directories
named \fB__pycache__\fP or starting with \fB\&.\fP will be excluded.
.sp
The \fI\%template context\fP used for all matching
files is:
.INDENT 0.0
.IP \(bu 2
Any option passed to the \fBstartapp\fP command (among the command\(aqs supported
options)
.IP \(bu 2
\fBapp_name\fP \-\- the app name as passed to the command
.IP \(bu 2
\fBapp_directory\fP \-\- the full path of the newly created app
.IP \(bu 2
\fBcamel_case_app_name\fP \-\- the app name in camel case format
.IP \(bu 2
\fBdocs_version\fP \-\- the version of the documentation: \fB\(aqdev\(aq\fP or \fB\(aq1.x\(aq\fP
.IP \(bu 2
\fBdjango_version\fP \-\- the version of Django, e.g. \fB\(aq2.0.3\(aq\fP
.UNINDENT
.sp
\fBWARNING:\fP
.INDENT 0.0
.INDENT 3.5
When the app template files are rendered with the Django template
engine (by default all \fB*.py\fP files), Django will also replace all
stray template variables contained. For example, if one of the Python files
contains a docstring explaining a particular feature related
to template rendering, it might result in an incorrect example.
.sp
To work around this problem, you can use the \fI\%templatetag\fP
template tag to \(dqescape\(dq the various parts of the template syntax.
.sp
In addition, to allow Python template files that contain Django template
language syntax while also preventing packaging systems from trying to
byte\-compile invalid \fB*.py\fP files, template files ending with \fB\&.py\-tpl\fP
will be renamed to \fB\&.py\fP\&.
.UNINDENT
.UNINDENT
.sp
\fBWARNING:\fP
.INDENT 0.0
.INDENT 3.5
The contents of custom app (or project) templates should always be
audited before use: Such templates define code that will become
part of your project, and this means that such code will be trusted
as much as any app you install, or code you write yourself.
Further, even rendering the templates is, effectively, executing
code that was provided as input to the management command. The
Django template language may provide wide access into the system,
so make sure any custom template you use is worthy of your trust.
.UNINDENT
.UNINDENT
.SS \fBstartproject\fP
.INDENT 0.0
.TP
.B django\-admin startproject name [directory]
.UNINDENT
.sp
Creates a Django project directory structure for the given project name in
the current directory or the given destination.
.sp
By default, \fI\%the new directory\fP contains
\fBmanage.py\fP and a project package (containing a \fBsettings.py\fP and other
files).
.sp
If only the project name is given, both the project directory and project
package will be named \fB<projectname>\fP and the project directory
will be created in the current working directory.
.sp
If the optional destination is provided, Django will use that existing
directory as the project directory, and create \fBmanage.py\fP and the project
package within it. Use \(aq.\(aq to denote the current working directory.
.sp
For example:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin startproject myproject /Users/jezdez/Code/myproject_repo
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-template TEMPLATE
.UNINDENT
.sp
Specifies a directory, file path, or URL of a custom project template. See the
\fI\%startapp \-\-template\fP documentation for examples and usage.
.INDENT 0.0
.TP
.B \-\-extension EXTENSIONS, \-e EXTENSIONS
.UNINDENT
.sp
Specifies which file extensions in the project template should be rendered with
the template engine. Defaults to \fBpy\fP\&.
.INDENT 0.0
.TP
.B \-\-name FILES, \-n FILES
.UNINDENT
.sp
Specifies which files in the project template (in addition to those matching
\fB\-\-extension\fP) should be rendered with the template engine. Defaults to an
empty list.
.INDENT 0.0
.TP
.B \-\-exclude DIRECTORIES, \-x DIRECTORIES
.UNINDENT
.sp
Specifies which directories in the project template should be excluded, in
addition to \fB\&.git\fP and \fB__pycache__\fP\&. If this option is not provided,
directories named \fB__pycache__\fP or starting with \fB\&.\fP will be excluded.
.sp
The \fI\%template context\fP used is:
.INDENT 0.0
.IP \(bu 2
Any option passed to the \fBstartproject\fP command (among the command\(aqs
supported options)
.IP \(bu 2
\fBproject_name\fP \-\- the project name as passed to the command
.IP \(bu 2
\fBproject_directory\fP \-\- the full path of the newly created project
.IP \(bu 2
\fBsecret_key\fP \-\- a random key for the \fI\%SECRET_KEY\fP setting
.IP \(bu 2
\fBdocs_version\fP \-\- the version of the documentation: \fB\(aqdev\(aq\fP or \fB\(aq1.x\(aq\fP
.IP \(bu 2
\fBdjango_version\fP \-\- the version of Django, e.g. \fB\(aq2.0.3\(aq\fP
.UNINDENT
.sp
Please also see the \fI\%rendering warning\fP and
\fI\%trusted code warning\fP as mentioned for
\fI\%startapp\fP\&.
.SS \fBtest\fP
.INDENT 0.0
.TP
.B django\-admin test [test_label [test_label ...]]
.UNINDENT
.sp
Runs tests for all installed apps. See \fI\%Testing in Django\fP for more
information.
.INDENT 0.0
.TP
.B \-\-failfast
.UNINDENT
.sp
Stops running tests and reports the failure immediately after a test fails.
.INDENT 0.0
.TP
.B \-\-testrunner TESTRUNNER
.UNINDENT
.sp
Controls the test runner class that is used to execute tests. This value
overrides the value provided by the \fI\%TEST_RUNNER\fP setting.
.INDENT 0.0
.TP
.B \-\-noinput, \-\-no\-input
.UNINDENT
.sp
Suppresses all user prompts. A typical prompt is a warning about deleting an
existing test database.
.SS Test runner options
.sp
The \fBtest\fP command receives options on behalf of the specified
\fI\%\-\-testrunner\fP\&. These are the options of the default test runner:
\fI\%DiscoverRunner\fP\&.
.INDENT 0.0
.TP
.B \-\-keepdb
.UNINDENT
.sp
Preserves the test database between test runs. This has the advantage of
skipping both the create and destroy actions which can greatly decrease the
time to run tests, especially those in a large test suite. If the test database
does not exist, it will be created on the first run and then preserved for each
subsequent run. Unless the \fI\%MIGRATE\fP test setting is
\fBFalse\fP, any unapplied migrations will also be applied to the test database
before running the test suite.
.INDENT 0.0
.TP
.B \-\-shuffle [SEED]
.UNINDENT
.sp
Randomizes the order of tests before running them. This can help detect tests
that aren\(aqt properly isolated. The test order generated by this option is a
deterministic function of the integer seed given. When no seed is passed, a
seed is chosen randomly and printed to the console. To repeat a particular test
order, pass a seed. The test orders generated by this option preserve Django\(aqs
\fI\%guarantees on test order\fP\&. They also keep tests grouped
by test case class.
.sp
The shuffled orderings also have a special consistency property useful when
narrowing down isolation issues. Namely, for a given seed and when running a
subset of tests, the new order will be the original shuffling restricted to the
smaller set. Similarly, when adding tests while keeping the seed the same, the
order of the original tests will be the same in the new order.
.INDENT 0.0
.TP
.B \-\-reverse, \-r
.UNINDENT
.sp
Sorts test cases in the opposite execution order. This may help in debugging
the side effects of tests that aren\(aqt properly isolated. \fI\%Grouping by test
class\fP is preserved when using this option. This can be used
in conjunction with \fB\-\-shuffle\fP to reverse the order for a particular seed.
.INDENT 0.0
.TP
.B \-\-debug\-mode
.UNINDENT
.sp
Sets the \fI\%DEBUG\fP setting to \fBTrue\fP prior to running tests. This may
help troubleshoot test failures.
.INDENT 0.0
.TP
.B \-\-debug\-sql, \-d
.UNINDENT
.sp
Enables \fI\%SQL logging\fP for failing tests. If
\fB\-\-verbosity\fP is \fB2\fP, then queries in passing tests are also output.
.INDENT 0.0
.TP
.B \-\-parallel [N]
.UNINDENT
.INDENT 0.0
.TP
.B DJANGO_TEST_PROCESSES
.UNINDENT
.sp
Runs tests in separate parallel processes. Since modern processors have
multiple cores, this allows running tests significantly faster.
.sp
Using \fB\-\-parallel\fP without a value, or with the value \fBauto\fP, runs one test
process per core according to \fI\%multiprocessing.cpu_count()\fP\&. You can
override this by passing the desired number of processes, e.g.
\fB\-\-parallel 4\fP, or by setting the \fI\%DJANGO_TEST_PROCESSES\fP environment
variable.
.sp
Django distributes test cases — \fI\%unittest.TestCase\fP subclasses — to
subprocesses. If there are fewer test cases than configured processes, Django
will reduce the number of processes accordingly.
.sp
Each process gets its own database. You must ensure that different test cases
don\(aqt access the same resources. For instance, test cases that touch the
filesystem should create a temporary directory for their own use.
.sp
\fBNOTE:\fP
.INDENT 0.0
.INDENT 3.5
If you have test classes that cannot be run in parallel, you can use
\fBSerializeMixin\fP to run them sequentially. See \fI\%Enforce running test
classes sequentially\fP\&.
.UNINDENT
.UNINDENT
.sp
This option requires the third\-party \fBtblib\fP package to display tracebacks
correctly:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
$ python \-m pip install tblib
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
This feature isn\(aqt available on Windows. It doesn\(aqt work with the Oracle
database backend either.
.sp
If you want to use \fI\%pdb\fP while debugging tests, you must disable parallel
execution (\fB\-\-parallel=1\fP). You\(aqll see something like \fBbdb.BdbQuit\fP if you
don\(aqt.
.sp
\fBWARNING:\fP
.INDENT 0.0
.INDENT 3.5
When test parallelization is enabled and a test fails, Django may be
unable to display the exception traceback. This can make debugging
difficult. If you encounter this problem, run the affected test without
parallelization to see the traceback of the failure.
.sp
This is a known limitation. It arises from the need to serialize objects
in order to exchange them between processes. See
\fI\%What can be pickled and unpickled?\fP for details.
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-tag TAGS
.UNINDENT
.sp
Runs only tests \fI\%marked with the specified tags\fP\&.
May be specified multiple times and combined with \fI\%test \-\-exclude\-tag\fP\&.
.sp
Tests that fail to load are always considered matching.
.INDENT 0.0
.TP
.B \-\-exclude\-tag EXCLUDE_TAGS
.UNINDENT
.sp
Excludes tests \fI\%marked with the specified tags\fP\&.
May be specified multiple times and combined with \fI\%test \-\-tag\fP\&.
.INDENT 0.0
.TP
.B \-k TEST_NAME_PATTERNS
.UNINDENT
.sp
Runs test methods and classes matching test name patterns, in the same way as
\fI\%unittest\(aqs \-k option\fP\&. Can be specified multiple times.
.INDENT 0.0
.TP
.B \-\-pdb
.UNINDENT
.sp
Spawns a \fBpdb\fP debugger at each test error or failure. If you have it
installed, \fBipdb\fP is used instead.
.INDENT 0.0
.TP
.B \-\-buffer, \-b
.UNINDENT
.sp
Discards output (\fBstdout\fP and \fBstderr\fP) for passing tests, in the same way
as \fI\%unittest\(aqs \-\-buffer option\fP\&.
.INDENT 0.0
.TP
.B \-\-no\-faulthandler
.UNINDENT
.sp
Django automatically calls \fI\%faulthandler.enable()\fP when starting the
tests, which allows it to print a traceback if the interpreter crashes. Pass
\fB\-\-no\-faulthandler\fP to disable this behavior.
.INDENT 0.0
.TP
.B \-\-timing
.UNINDENT
.sp
Outputs timings, including database setup and total run time.
.SS \fBtestserver\fP
.INDENT 0.0
.TP
.B django\-admin testserver [fixture [fixture ...]]
.UNINDENT
.sp
Runs a Django development server (as in \fI\%runserver\fP) using data from
the given fixture(s).
.sp
For example, this command:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin testserver mydata.json
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
\&...would perform the following steps:
.INDENT 0.0
.IP 1. 3
Create a test database, as described in \fI\%The test database\fP\&.
.IP 2. 3
Populate the test database with fixture data from the given fixtures.
(For more on fixtures, see the documentation for \fI\%loaddata\fP above.)
.IP 3. 3
Runs the Django development server (as in \fI\%runserver\fP), pointed at
this newly created test database instead of your production database.
.UNINDENT
.sp
This is useful in a number of ways:
.INDENT 0.0
.IP \(bu 2
When you\(aqre writing \fI\%unit tests\fP of how your views
act with certain fixture data, you can use \fBtestserver\fP to interact with
the views in a web browser, manually.
.IP \(bu 2
Let\(aqs say you\(aqre developing your Django application and have a \(dqpristine\(dq
copy of a database that you\(aqd like to interact with. You can dump your
database to a \fI\%fixture\fP (using the
\fI\%dumpdata\fP command, explained above), then use \fBtestserver\fP to run
your web application with that data. With this arrangement, you have the
flexibility of messing up your data in any way, knowing that whatever data
changes you\(aqre making are only being made to a test database.
.UNINDENT
.sp
Note that this server does \fInot\fP automatically detect changes to your Python
source code (as \fI\%runserver\fP does). It does, however, detect changes to
templates.
.INDENT 0.0
.TP
.B \-\-addrport ADDRPORT
.UNINDENT
.sp
Specifies a different port, or IP address and port, from the default of
\fB127.0.0.1:8000\fP\&. This value follows exactly the same format and serves
exactly the same function as the argument to the \fI\%runserver\fP command.
.sp
Examples:
.sp
To run the test server on port 7000 with \fBfixture1\fP and \fBfixture2\fP:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin testserver \-\-addrport 7000 fixture1 fixture2
django\-admin testserver fixture1 fixture2 \-\-addrport 7000
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
(The above statements are equivalent. We include both of them to demonstrate
that it doesn\(aqt matter whether the options come before or after the fixture
arguments.)
.sp
To run on 1.2.3.4:7000 with a \fBtest\fP fixture:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin testserver \-\-addrport 1.2.3.4:7000 test
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-noinput, \-\-no\-input
.UNINDENT
.sp
Suppresses all user prompts. A typical prompt is a warning about deleting an
existing test database.
.SH COMMANDS PROVIDED BY APPLICATIONS
.sp
Some commands are only available when the \fBdjango.contrib\fP application that
\fI\%implements\fP them has been
\fI\%enabled\fP\&. This section describes them grouped by
their application.
.SS \fBdjango.contrib.auth\fP
.SS \fBchangepassword\fP
.INDENT 0.0
.TP
.B django\-admin changepassword [<username>]
.UNINDENT
.sp
This command is only available if Django\(aqs \fI\%authentication system\fP (\fBdjango.contrib.auth\fP) is installed.
.sp
Allows changing a user\(aqs password. It prompts you to enter a new password twice
for the given user. If the entries are identical, this immediately becomes the
new password. If you do not supply a user, the command will attempt to change
the password whose username matches the current user.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database to query for the user. Defaults to \fBdefault\fP\&.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin changepassword ringo
.ft P
.fi
.UNINDENT
.UNINDENT
.SS \fBcreatesuperuser\fP
.INDENT 0.0
.TP
.B django\-admin createsuperuser
.UNINDENT
.INDENT 0.0
.TP
.B DJANGO_SUPERUSER_PASSWORD
.UNINDENT
.sp
This command is only available if Django\(aqs \fI\%authentication system\fP (\fBdjango.contrib.auth\fP) is installed.
.sp
Creates a superuser account (a user who has all permissions). This is
useful if you need to create an initial superuser account or if you need to
programmatically generate superuser accounts for your site(s).
.sp
When run interactively, this command will prompt for a password for
the new superuser account. When run non\-interactively, you can provide
a password by setting the \fI\%DJANGO_SUPERUSER_PASSWORD\fP environment
variable. Otherwise, no password will be set, and the superuser account will
not be able to log in until a password has been manually set for it.
.sp
In non\-interactive mode, the
\fI\%USERNAME_FIELD\fP and required
fields (listed in
\fI\%REQUIRED_FIELDS\fP) fall back to
\fBDJANGO_SUPERUSER_<uppercase_field_name>\fP environment variables, unless they
are overridden by a command line argument. For example, to provide an \fBemail\fP
field, you can use \fBDJANGO_SUPERUSER_EMAIL\fP environment variable.
.INDENT 0.0
.TP
.B \-\-noinput, \-\-no\-input
.UNINDENT
.sp
Suppresses all user prompts. If a suppressed prompt cannot be resolved
automatically, the command will exit with error code 1.
.INDENT 0.0
.TP
.B \-\-username USERNAME
.UNINDENT
.INDENT 0.0
.TP
.B \-\-email EMAIL
.UNINDENT
.sp
The username and email address for the new account can be supplied by
using the \fB\-\-username\fP and \fB\-\-email\fP arguments on the command
line. If either of those is not supplied, \fBcreatesuperuser\fP will prompt for
it when running interactively.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database into which the superuser object will be saved.
.sp
You can subclass the management command and override \fBget_input_data()\fP if you
want to customize data input and validation. Consult the source code for
details on the existing implementation and the method\(aqs parameters. For example,
it could be useful if you have a \fBForeignKey\fP in
\fI\%REQUIRED_FIELDS\fP and want to
allow creating an instance instead of entering the primary key of an existing
instance.
.SS \fBdjango.contrib.contenttypes\fP
.SS \fBremove_stale_contenttypes\fP
.INDENT 0.0
.TP
.B django\-admin remove_stale_contenttypes
.UNINDENT
.sp
This command is only available if Django\(aqs \fI\%contenttypes app\fP (\fI\%django.contrib.contenttypes\fP) is installed.
.sp
Deletes stale content types (from deleted models) in your database. Any objects
that depend on the deleted content types will also be deleted. A list of
deleted objects will be displayed before you confirm it\(aqs okay to proceed with
the deletion.
.INDENT 0.0
.TP
.B \-\-database DATABASE
.UNINDENT
.sp
Specifies the database to use. Defaults to \fBdefault\fP\&.
.INDENT 0.0
.TP
.B \-\-include\-stale\-apps
.UNINDENT
.sp
Deletes stale content types including ones from previously installed apps that
have been removed from \fI\%INSTALLED_APPS\fP\&. Defaults to \fBFalse\fP\&.
.SS \fBdjango.contrib.gis\fP
.SS \fBogrinspect\fP
.sp
This command is only available if \fI\%GeoDjango\fP
(\fBdjango.contrib.gis\fP) is installed.
.sp
Please refer to its \fI\%description\fP in the GeoDjango
documentation.
.SS \fBdjango.contrib.sessions\fP
.SS \fBclearsessions\fP
.INDENT 0.0
.TP
.B django\-admin clearsessions
.UNINDENT
.sp
Can be run as a cron job or directly to clean out expired sessions.
.SS \fBdjango.contrib.sitemaps\fP
.SS \fBping_google\fP
.sp
This command is only available if the \fI\%Sitemaps framework\fP (\fBdjango.contrib.sitemaps\fP) is installed.
.sp
Please refer to its \fI\%description\fP in the Sitemaps
documentation.
.SS \fBdjango.contrib.staticfiles\fP
.SS \fBcollectstatic\fP
.sp
This command is only available if the \fI\%static files application\fP (\fBdjango.contrib.staticfiles\fP) is installed.
.sp
Please refer to its \fI\%description\fP in the
\fI\%staticfiles\fP documentation.
.SS \fBfindstatic\fP
.sp
This command is only available if the \fI\%static files application\fP (\fBdjango.contrib.staticfiles\fP) is installed.
.sp
Please refer to its \fI\%description\fP in the \fI\%staticfiles\fP documentation.
.SH DEFAULT OPTIONS
.sp
Although some commands may allow their own custom options, every command
allows for the following options by default:
.INDENT 0.0
.TP
.B \-\-pythonpath PYTHONPATH
.UNINDENT
.sp
Adds the given filesystem path to the Python \fI\%import search path\fP\&. If this
isn\(aqt provided, \fBdjango\-admin\fP will use the \fI\%PYTHONPATH\fP environment
variable.
.sp
This option is unnecessary in \fBmanage.py\fP, because it takes care of setting
the Python path for you.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin migrate \-\-pythonpath=\(aq/home/djangoprojects/myproject\(aq
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-settings SETTINGS
.UNINDENT
.sp
Specifies the settings module to use. The settings module should be in Python
package syntax, e.g. \fBmysite.settings\fP\&. If this isn\(aqt provided,
\fBdjango\-admin\fP will use the \fI\%DJANGO_SETTINGS_MODULE\fP environment
variable.
.sp
This option is unnecessary in \fBmanage.py\fP, because it uses
\fBsettings.py\fP from the current project by default.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin migrate \-\-settings=mysite.settings
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-traceback
.UNINDENT
.sp
Displays a full stack trace when a \fI\%CommandError\fP
is raised. By default, \fBdjango\-admin\fP will show an error message when a
\fBCommandError\fP occurs and a full stack trace for any other exception.
.sp
This option is ignored by \fI\%runserver\fP\&.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin migrate \-\-traceback
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-verbosity {0,1,2,3}, \-v {0,1,2,3}
.UNINDENT
.sp
Specifies the amount of notification and debug information that a command
should print to the console.
.INDENT 0.0
.IP \(bu 2
\fB0\fP means no output.
.IP \(bu 2
\fB1\fP means normal output (default).
.IP \(bu 2
\fB2\fP means verbose output.
.IP \(bu 2
\fB3\fP means \fIvery\fP verbose output.
.UNINDENT
.sp
This option is ignored by \fI\%runserver\fP\&.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin migrate \-\-verbosity 2
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-no\-color
.UNINDENT
.sp
Disables colorized command output. Some commands format their output to be
colorized. For example, errors will be printed to the console in red and SQL
statements will be syntax highlighted.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin runserver \-\-no\-color
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \-\-force\-color
.UNINDENT
.sp
Forces colorization of the command output if it would otherwise be disabled
as discussed in \fI\%Syntax coloring\fP\&. For example, you may want to pipe
colored output to another command.
.INDENT 0.0
.TP
.B \-\-skip\-checks
.UNINDENT
.sp
Skips running system checks prior to running the command. This option is only
available if the
\fI\%requires_system_checks\fP command
attribute is not an empty list or tuple.
.sp
Example usage:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin migrate \-\-skip\-checks
.ft P
.fi
.UNINDENT
.UNINDENT
.SH EXTRA NICETIES
.SS Syntax coloring
.INDENT 0.0
.TP
.B DJANGO_COLORS
.UNINDENT
.sp
The \fBdjango\-admin\fP / \fBmanage.py\fP commands will use pretty
color\-coded output if your terminal supports ANSI\-colored output. It
won\(aqt use the color codes if you\(aqre piping the command\(aqs output to
another program unless the \fI\%\-\-force\-color\fP option is used.
.SS Windows support
.sp
On Windows 10, the \fI\%Windows Terminal\fP application, \fI\%VS Code\fP, and PowerShell
(where virtual terminal processing is enabled) allow colored output, and are
supported by default.
.sp
Under Windows, the legacy \fBcmd.exe\fP native console doesn\(aqt support ANSI
escape sequences so by default there is no color output. In this case either of
two third\-party libraries are needed:
.INDENT 0.0
.IP \(bu 2
Install \fI\%colorama\fP, a Python package that translates ANSI color codes into
Windows API calls. Django commands will detect its presence and will make use
of its services to color output just like on Unix\-based platforms.
\fBcolorama\fP can be installed via pip:
.INDENT 2.0
.INDENT 3.5
.sp
.nf
.ft C
\&...\e> py \-m pip install colorama
.ft P
.fi
.UNINDENT
.UNINDENT
.IP \(bu 2
Install \fI\%ANSICON\fP, a third\-party tool that allows \fBcmd.exe\fP to process
ANSI color codes. Django commands will detect its presence and will make use
of its services to color output just like on Unix\-based platforms.
.UNINDENT
.sp
Other modern terminal environments on Windows, that support terminal colors,
but which are not automatically detected as supported by Django, may \(dqfake\(dq the
installation of \fBANSICON\fP by setting the appropriate environmental variable,
\fBANSICON=\(dqon\(dq\fP\&.
.SS Custom colors
.sp
The colors used for syntax highlighting can be customized. Django
ships with three color palettes:
.INDENT 0.0
.IP \(bu 2
\fBdark\fP, suited to terminals that show white text on a black
background. This is the default palette.
.IP \(bu 2
\fBlight\fP, suited to terminals that show black text on a white
background.
.IP \(bu 2
\fBnocolor\fP, which disables syntax highlighting.
.UNINDENT
.sp
You select a palette by setting a \fI\%DJANGO_COLORS\fP environment
variable to specify the palette you want to use. For example, to
specify the \fBlight\fP palette under a Unix or OS/X BASH shell, you
would run the following at a command prompt:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
export DJANGO_COLORS=\(dqlight\(dq
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
You can also customize the colors that are used. Django specifies a
number of roles in which color is used:
.INDENT 0.0
.IP \(bu 2
\fBerror\fP \- A major error.
.IP \(bu 2
\fBnotice\fP \- A minor error.
.IP \(bu 2
\fBsuccess\fP \- A success.
.IP \(bu 2
\fBwarning\fP \- A warning.
.IP \(bu 2
\fBsql_field\fP \- The name of a model field in SQL.
.IP \(bu 2
\fBsql_coltype\fP \- The type of a model field in SQL.
.IP \(bu 2
\fBsql_keyword\fP \- An SQL keyword.
.IP \(bu 2
\fBsql_table\fP \- The name of a model in SQL.
.IP \(bu 2
\fBhttp_info\fP \- A 1XX HTTP Informational server response.
.IP \(bu 2
\fBhttp_success\fP \- A 2XX HTTP Success server response.
.IP \(bu 2
\fBhttp_not_modified\fP \- A 304 HTTP Not Modified server response.
.IP \(bu 2
\fBhttp_redirect\fP \- A 3XX HTTP Redirect server response other than 304.
.IP \(bu 2
\fBhttp_not_found\fP \- A 404 HTTP Not Found server response.
.IP \(bu 2
\fBhttp_bad_request\fP \- A 4XX HTTP Bad Request server response other than 404.
.IP \(bu 2
\fBhttp_server_error\fP \- A 5XX HTTP Server Error response.
.IP \(bu 2
\fBmigrate_heading\fP \- A heading in a migrations management command.
.IP \(bu 2
\fBmigrate_label\fP \- A migration name.
.UNINDENT
.sp
Each of these roles can be assigned a specific foreground and
background color, from the following list:
.INDENT 0.0
.IP \(bu 2
\fBblack\fP
.IP \(bu 2
\fBred\fP
.IP \(bu 2
\fBgreen\fP
.IP \(bu 2
\fByellow\fP
.IP \(bu 2
\fBblue\fP
.IP \(bu 2
\fBmagenta\fP
.IP \(bu 2
\fBcyan\fP
.IP \(bu 2
\fBwhite\fP
.UNINDENT
.sp
Each of these colors can then be modified by using the following
display options:
.INDENT 0.0
.IP \(bu 2
\fBbold\fP
.IP \(bu 2
\fBunderscore\fP
.IP \(bu 2
\fBblink\fP
.IP \(bu 2
\fBreverse\fP
.IP \(bu 2
\fBconceal\fP
.UNINDENT
.sp
A color specification follows one of the following patterns:
.INDENT 0.0
.IP \(bu 2
\fBrole=fg\fP
.IP \(bu 2
\fBrole=fg/bg\fP
.IP \(bu 2
\fBrole=fg,option,option\fP
.IP \(bu 2
\fBrole=fg/bg,option,option\fP
.UNINDENT
.sp
where \fBrole\fP is the name of a valid color role, \fBfg\fP is the
foreground color, \fBbg\fP is the background color and each \fBoption\fP
is one of the color modifying options. Multiple color specifications
are then separated by a semicolon. For example:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
export DJANGO_COLORS=\(dqerror=yellow/blue,blink;notice=magenta\(dq
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
would specify that errors be displayed using blinking yellow on blue,
and notices displayed using magenta. All other color roles would be
left uncolored.
.sp
Colors can also be specified by extending a base palette. If you put
a palette name in a color specification, all the colors implied by that
palette will be loaded. So:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
export DJANGO_COLORS=\(dqlight;error=yellow/blue,blink;notice=magenta\(dq
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
would specify the use of all the colors in the light color palette,
\fIexcept\fP for the colors for errors and notices which would be
overridden as specified.
.SS Bash completion
.sp
If you use the Bash shell, consider installing the Django bash completion
script, which lives in \fI\%extras/django_bash_completion\fP in the Django source
distribution. It enables tab\-completion of \fBdjango\-admin\fP and
\fBmanage.py\fP commands, so you can, for instance...
.INDENT 0.0
.IP \(bu 2
Type \fBdjango\-admin\fP\&.
.IP \(bu 2
Press [TAB] to see all available options.
.IP \(bu 2
Type \fBsql\fP, then [TAB], to see all available options whose names start
with \fBsql\fP\&.
.UNINDENT
.sp
See \fI\%How to create custom django\-admin commands\fP for how to add customized actions.
.SS Black formatting
.sp
.sp
The Python files created by \fI\%startproject\fP, \fI\%startapp\fP,
\fI\%optimizemigration\fP, \fI\%makemigrations\fP, and
\fI\%squashmigrations\fP are formatted using the \fBblack\fP command if it is
present on your \fBPATH\fP\&.
.sp
If you have \fBblack\fP globally installed, but do not wish it used for the
current project, you can set the \fBPATH\fP explicitly:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
PATH=path/to/venv/bin django\-admin makemigrations
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
For commands using \fBstdout\fP you can pipe the output to \fBblack\fP if needed:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
django\-admin inspectdb | black \-
.ft P
.fi
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B django.core.management.call_command(name, *args, **options)
.UNINDENT
.sp
To call a management command from code use \fBcall_command\fP\&.
.INDENT 0.0
.TP
.B \fBname\fP
the name of the command to call or a command object. Passing the name is
preferred unless the object is required for testing.
.TP
.B \fB*args\fP
a list of arguments accepted by the command. Arguments are passed to the
argument parser, so you can use the same style as you would on the command
line. For example, \fBcall_command(\(aqflush\(aq, \(aq\-\-verbosity=0\(aq)\fP\&.
.TP
.B \fB**options\fP
named options accepted on the command\-line. Options are passed to the command
without triggering the argument parser, which means you\(aqll need to pass the
correct type. For example, \fBcall_command(\(aqflush\(aq, verbosity=0)\fP (zero must
be an integer rather than a string).
.UNINDENT
.sp
Examples:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
from django.core import management
from django.core.management.commands import loaddata
management.call_command(\(dqflush\(dq, verbosity=0, interactive=False)
management.call_command(\(dqloaddata\(dq, \(dqtest_data\(dq, verbosity=0)
management.call_command(loaddata.Command(), \(dqtest_data\(dq, verbosity=0)
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Note that command options that take no arguments are passed as keywords
with \fBTrue\fP or \fBFalse\fP, as you can see with the \fBinteractive\fP option above.
.sp
Named arguments can be passed by using either one of the following syntaxes:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
# Similar to the command line
management.call_command(\(dqdumpdata\(dq, \(dq\-\-natural\-foreign\(dq)
# Named argument similar to the command line minus the initial dashes and
# with internal dashes replaced by underscores
management.call_command(\(dqdumpdata\(dq, natural_foreign=True)
# \(gause_natural_foreign_keys\(ga is the option destination variable
management.call_command(\(dqdumpdata\(dq, use_natural_foreign_keys=True)
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
Some command options have different names when using \fBcall_command()\fP instead
of \fBdjango\-admin\fP or \fBmanage.py\fP\&. For example, \fBdjango\-admin
createsuperuser \-\-no\-input\fP translates to \fBcall_command(\(aqcreatesuperuser\(aq,
interactive=False)\fP\&. To find what keyword argument name to use for
\fBcall_command()\fP, check the command\(aqs source code for the \fBdest\fP argument
passed to \fBparser.add_argument()\fP\&.
.sp
Command options which take multiple options are passed a list:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
management.call_command(\(dqdumpdata\(dq, exclude=[\(dqcontenttypes\(dq, \(dqauth\(dq])
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
The return value of the \fBcall_command()\fP function is the same as the return
value of the \fBhandle()\fP method of the command.
.SH OUTPUT REDIRECTION
.sp
Note that you can redirect standard output and error streams as all commands
support the \fBstdout\fP and \fBstderr\fP options. For example, you could write:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
with open(\(dq/path/to/command_output\(dq, \(dqw\(dq) as f:
management.call_command(\(dqdumpdata\(dq, stdout=f)
.ft P
.fi
.UNINDENT
.UNINDENT
.SH AUTHOR
Django Software Foundation
.SH COPYRIGHT
Django Software Foundation and contributors
.\" Generated by docutils manpage writer.
.
|