Skip to content

dany-herz42/django-practice

Repository files navigation

Django-practice

My first example project using Django. In this repository you will find a basic sample project using Django, the most popular Python-based web development framework.

Topics

  • Creation of virtual environment
  • Project structure
  • Creation and structure of apps
  • Routing
  • Database (Sqlite3) and models
  • Route parameters
  • Django admin panel
  • Template rendering with Jinja2
  • Django forms
  • URL name
  • Static files

Try it

  1. Clone this repository
  2. Open a terminal and create a virtual environment inside the project root
> pip install virtualenv
> virtualenv venv
  1. Installs the packages from the requirements.txt file
> pip install -r requirements.txt
  1. Run the database migrations
> python manage.py migrate
  1. Run server 🚀:
> python manage.py runserver

For more information, visit:

About

Project example using Python Django

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published