Boilerplate for any django projects with HTML, CSS, Bootstrap, REST API.
- Create a repository using this template or clone the repository
git clone [email protected]:Tanvir-yzu/django_boilerplate_tanvir.git - Create a virtual environment
python -m venv venv - Activate the virtual environment
source venv/bin/activate - Install modules
pip install -r requirements.txt - Create local settings
copy examples\local_settings.example django_boilerplate_tanvir\local_settings.py - Create logs file
mkdir logs - Rename project
python manage.py renameproject django_boilerplate_tanvir <your_project_name> - Migrate database
python manage.py migrate - Create superuser
python manage.py createsuperuser - Run the project
python manage.py runserver