Installation - abyrne55/air-quality-monitor GitHub Wiki

This project follows the typical django project installation process, which is summarized below:

  1. Install django: pip3 install django
  2. Download this project: git clone https://github.com/abyrne55/air-quality-monitor.git
  3. Enter the application directory: cd air-quality-monitor/airqual
  4. Setup the database migrations: python3 manage.py migrate
  5. (optional) Make an admin account for yourself: python3 manage.py createsuperuser
  6. Run the server: python3 manage.py runserver

More information can be found on the Django website.