https://github.com/adamchainz/django-startproject-templates
https://github.com/adamchainz/django-startproject-templates
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/adamchainz/django-startproject-templates
- Owner: adamchainz
- Created: 2020-03-03T16:12:46.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-10-28T08:03:32.000Z (almost 3 years ago)
- Last Synced: 2025-04-02T21:04:52.029Z (6 months ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 24
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
django-startproject-templates
=============================Easy to use templates for use with |djangos-startproject|_.
.. |djangos-startproject| replace:: Django's ``startproject --template``
.. _djangos-startproject: https://docs.djangoproject.com/en/stable/ref/django-admin/#startprojectUse with e.g.
.. code-block:: console
$ django-admin startproject example . --template ~/Documents/Projects/django-startproject-templates/simple
The ``.`` puts the ``manage.py`` in the current directory.
Templates
---------``simple``
~~~~~~~~~~A single project that is its own app.
``simple-core``
~~~~~~~~~~~~~~~A single project with a nested empty core app.
``single-file``
~~~~~~~~~~~~~~~My single file project taken from `my single file blog post `__.