Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Latest commit

 

History

History
28 lines (14 loc) · 471 Bytes

README.md

File metadata and controls

28 lines (14 loc) · 471 Bytes

DJANGO INTERVENTI

A sample project using Django, django-rest-framework and related packages.

Run

  • Clone the project

  • Create a virtual environment with Python 3

    python3 -m venv venv

  • Activate the virtual environment

    source venv/bin/activate

  • Use (or customize) the dev settings

    cp mysite/settings_dev.py mysite/settings.py

  • Migrate the database

    python manage.py migrate

  • Run the instance

    python manage.py runserver