This is main API code for managing AUV's, planning trips, logging data.
$ docker-compose build
$ docker-compose run web python manage.py migrate
$ docker-compose run web python manage.py createsuperuser
$ docker-compose up
$ pip install -r requirements.tx
$ export DEBUG=True
$ export DATABASE_URL=postgres://USER:PASSWORD@HOST:PORT/NAME`
$ export SECRET_KEY=somethingsecret
For other database backends see: https://github.com/kennethreitz/dj-database-url
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver
Go to localhost:8000/admin
and create an AUV for testing with the Frontend.