git remote add production root@159.89.46.207:deploy
git push production master
- Create and activate a Python 3 virtualenv
venv
in this directory.
- Run
pip install -r requirements.txt
.
- Install PostGIS (+ GEOS, PROJ.4, GDAL, GeoIP2).
- Create a file
django_project/config_settings.py
and set the following options:
DEBUG = True
SECRET_KEY = 'some-secure-random-secret-key'
# You can generate a new key as follows:
# >>> import random
# >>> ''.join(random.SystemRandom() \
# .choice('abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)') \
# for i in range(50))
ALLOWED_HOSTS = ['localhost', '127.0.0.1', '[::1]']
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
'NAME': 'your-postgres-database',
'USER': 'your-username',
'PASSWORD': 'your-password',
'HOST': 'localhost',
'PORT': '5432',
}
}
- Set up the Postgres database to use the PostGIS extension:
CREATE EXTENSION postgis;
- Run
python manage.py makemigrations && python manage.py migrate
.
- (optional) Import base station data:
python manage.py import_owned_base_stations file.csv
python manage.py import_identified_base_stations file.csv
- Collect static files with
python manage.py collectstatic --noinput --link
.
- (optional) Download and extract the
.mmdb
Country and City files from MaxMind into static/geoip2
.
- Register to Google Earth Engine.
- Get an EE OAuth2 authentication token.
- (optional) Create an admin user with
python manage.py createsuperuser
.
- Run
python manage.py createcachetable
.
- Run
python manage.py runserver
.