Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 501 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 501 Bytes

STAC-Inventory

A Django project for STAC inventory management system. Uses Django v2.0

Local Deployment

  1. Create a new virtual environment and activate it.
$ pyvenv inv
$ source inv/bin/activate
  1. Install dependencies.
$ pip install -r requirements.txt
  1. Create the database.
$ python manage.py migrate
  1. Launch the development server:
$ python manage.py runserver
  1. Visit the url http://127.0.0.1:8000/ on your browser.