Loading repository data…
Loading repository data…
er5bus / repository
A skeleton aka. template for Django projects
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
django-project-skeleton is my skeleton for Django projects. It provides a directory structure for Django projects during development and deployment.
This structure is based on research and own experience of developing Django apps.
python 3.5 or higher;
Create a project folder and a venv folder within:
$ python3 -m venv venv
Now, you will need to set up virtual environment that will keep the application and its dependencies isolated from the main system.
Next run the following command with the name of your temporary virtual environment.
$ source venv/bin/activate
Now, run following command to install Flask dependency inside it:
$ pip install -r requirements/dev.txt
Run this command to run the built-in web server and access the application in your browser at http://localhost:8000:
$ python3 manage.py runserver