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