This Repository have the basic setup of a Django Project. Since setting and configuring a basic setup of a project by using Django is difficult. You can clone this repository for your project and you can use it for your projects.
Project is created with:
- Bootstrap 4
- Python 3.10
- Jazzmin 2.5
- Django 4.0
1> Authentication, Authorization
2> Overwritten Django admin module
3> Login and Sign up
4> A basic page and basic Navigation system.
5> A good and Mobile friendly User Interface.
Follow these steps to make project run locally
- Clone the repository
git clone https://github.com/tamaraiselvan/Base-django-project-Setup
- Create a virtual environment
python -m venv virtualenviron_name
- Activate the environment
virtualenviron_name\Scripts\activate
- Install Requirements from the Requirements.txt file
pip install -r requirements.txt
- Once you installed the requirements migrate the datebase
python manage.py migrate
- Once after migrating, Create a superuser account
python manage.py createsuperuser
- Run the server locally on your system
python manage.py runserver
- Open your browser and type
http://127.0.0.1:8000/