Satellite Data Extraction and Distribution, and coordinates calculation
To start, you will need docker and docker-compose
Clone the Github repo
$ git clone https://github.com/Novatics/nasaDataAPIAccess the main project folder
$ cd nasaDataCreate .env file
$ touch .envCopy and paste the lines below in .env
POSTGRES_USER=extractapi
POSTGRES_PASSWORD=extractapi123
POSTGRES_DB=extractapi
POSTGRES_HOST=db-extract
PORT=8000
Run the app
$ (sudo) docker-compose run web-extract python manage.py makemigrations core
$ (sudo) docker-compose run web-extract python manage.py migrate core
$ (sudo) docker-compose upAnd you are good to go! o/