Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frozen-burrito/djangoboilerplate
A standard Django project boilerplate with extra configuration.
https://github.com/frozen-burrito/djangoboilerplate
boilerplate-template debugging-tool django django-project python
Last synced: about 16 hours ago
JSON representation
A standard Django project boilerplate with extra configuration.
- Host: GitHub
- URL: https://github.com/frozen-burrito/djangoboilerplate
- Owner: Frozen-Burrito
- Created: 2020-01-21T04:43:50.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-22T18:27:35.000Z (over 3 years ago)
- Last Synced: 2023-03-04T04:26:04.072Z (almost 2 years ago)
- Topics: boilerplate-template, debugging-tool, django, django-project, python
- Language: JavaScript
- Homepage:
- Size: 14.3 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Project Boilerplate
> Still in development
A standard boilerplate for django projects that includes the [Django Debug Toolbar](https://django-debug-toolbar.readthedocs.io/en/latest/), special settings, commands & configuration. I wrote all the code following a tutorial.
## How to start
1. In the **Django_Boilerplate** directory, activate the virtual environment by running ```env\Scripts\activate``` on windows
2. If needed, run ```python manage.py makemigrations``` and ```python manage.py migrate``` if migrations need to be applied.
3. Finally, in the **Django_Boilerplate** directory run ```python manage.py runserver```. This will provide the localhost address, which can be introducer in the browser's searchbox to open the boilerplate.## Special commands
* ```python manage.py rename project_name new_project_name``` can be used to rename the project. By default, **project_name** is "demo". Replace **new_project_name** with the new name.