/django-projects

Collection of Django projects

Primary LanguagePythonMIT LicenseMIT

Django Project Collection

Language GitHub language count GitHub top language GitHub last commit (branch) GitHub repo size GitHub forks GitHub Repo stars GitHub watchers

This repository contains a collection of sample Django projects that demonstrate best practices and common use cases when building web applications with Django.

Projects

My tennis club

Local library

Getting Started

To run any of the apps locally, follow these steps:

  1. Clone the repository
git clone https://github.com/user/django-projects.git
  1. Navigate into the project folder
cd django-projects/socialnetwork
  1. Install dependencies
pip install -r requirements.txt
  1. Run migrations
python manage.py migrate
  1. Start development server
python manage.py runserver

The project will now be running at http://localhost:8000

Repeat these steps for any of the other projects in this repo.

Contributing

Contributions to add more Django code examples are welcome! Please open an issue first to discuss any new projects you would like to add.

License

This project is licensed under the MIT License - see the LICENSE file for more details.