This repository contains a Django Cookiecutter template that you can use to kickstart your Django projects.
- Pre-configured settings for quick setup.
- Pre-installed Django apps for common functionalities.
- Pre-configured database settings.
- Pre-configured static files settings.
Follow these steps to get the project up and running on your local machine:
- Clone the GitHub repository
git clone https://github.com/yourusername/Django-CookieCutter.git
- Create a Python virtual environment
python3 -m venv env source env/bin/activate
- Install the requirements
pip install -r requirements.txt
- Make migrations
python manage.py makemigrations
- Migrate the database
python manage.py migrate
- Run the server
python manage.py runserver
-
Clone the GitHub repository
git clone https://github.com/yourusername/Django-CookieCutter.git
-
Navigate to the github repository
cd some/filepath/Django-CookieCutter
-
Build the image
docker build -t image-name
-
Run the Container
docker run -p 8000:8000 image-name
Now, you should be able to see the application running at 127.0.0.1:8000
in your web browser. Enjoy coding!
You can customize this template to suit your needs. For example, you can add or remove Django apps, change the database settings, or modify the static files settings.
Contributions are welcome! Please read the contributing guidelines before getting started.
If you have any questions, feel free to reach out to me at '''[email protected]'''.