Deployment

Quick Start (DEVELOPMENT ONLY)

To start SCI-WMS with the Django development server on port :7000, type the following commands:

python manage.py runserver 0.0.0.0:7000

Note:

  • runserver should not be used for production
  • almost every dataset other than the smallest tested causes a SEGFAULT

Using the Gunicorn Server

Gunicorn is recommended for production servers

start services on port 8080 (port specified in gunicorn_config_prod.py)

gunicorn -c gunicorn_config_prod.py sciwms.wsgi:application

Gunicorn WSGI server configuration