A faster way to getting started with your Django project. Have your django project up and running in no-time
- clone this repository using:
git clone https://github.com/beingbiplov/django-boilerplate.git - Move into the directory:
cd django_boilerplate - Create a virtual environment and activate it.
- Install dependencies with:
pip install -r requirements.txt - Rename your project with:
python manage.py rename <current_project_name> <new_project_name>
Now, you are all ready to go. This django project boilerplate comes with an app called core where you can get started right away. urls.py, templates and static are all setup at app level.
You can start the server using: python manage.py runserver and navigate the default home page at: localhost:8000
This project is licensed under the MIT license, Copyright (c) 2020 django-boilerplate. For more information see LICENSE.