The Ministry of Environment receives and processes groundwater data and information related to the construction, alteration and decommissioning of groundwater wells and stores that information in the WELLS system. Well construction and reporting requirements are regulated under the Water Sustainability Act and Groundwater Protection Regulation. The information collected and stored in WELLS is used by government and other users to help inform decisions related to the management of the groundwater resource in B.C.
GWELLS is the new groundwater data repository and is intended to replace the current WELLS system. GWELLS aims to improve the user experience when submitting and searching for well information, to improve the quality of the data being submitted, and to improve the overall functionality of the system to meet user and regulatory requirements.
The application is being developed as an open source solution.
This is a Django project based on the Openshift Django quickstart that is intended to be deployed on an OpenShift cluster.
It uses the Openshift Source-to-Image (S2I) strategy with Python 3.5 on centos7. See requirements.txt for Django and dependency versions.
Apart from the regular files created by Django (project/*
, welcome/*
, manage.py
), this repository contains:
database/ - Database-specific files
└── code-tables - Static code table sql scripts
└── scripts - PostgrSQL psql scripts
└── sql-developer - SQL Developer Oracle SQL scripts
openshift/ - OpenShift-specific files
├── scripts - helper scripts
└── templates - application templates
requirements.txt - list of dependencies
To run this project in your development machine, ensure that Python 3.5 is installed, then follow these steps:
-
(optional) Create and activate a virtualenv (you may want to use virtualenvwrapper).
If you are developing against a Postgres database you can set environment variables with a postactivate script.
If working on Windows and using wirtualenvwrapper-win find the activate.bat script located in %USERPROFILE%\Envs\myenv\Scripts and add the following:
SET DATABASE_SERVICE_NAME=postgresql SET DATABASE_ENGINE=postgresql SET DATABASE_NAME=<dbname> SET DATABASE_USER=<user> SET DATABASE_PASSWORD=<pw> SET DJANGO_DEBUG=True
-
Fork this repo and clone your fork:
git clone https://github.com/<github-user>/gwells.git
-
Install dependencies:
pip install -r requirements.txt
-
Create a development database:
./manage.py migrate
-
If everything is alright, you should be able to start the Django development server:
./manage.py runserver
-
Open your browser and go to http://127.0.0.1:8000, you will be greeted with a welcome page.
See the README in https://github.com/bcgov/gwells/tree/master/openshift/templates.
By default your Django application is served with gunicorn and configured to output its access log to stderr. You can look at the combined stdout and stderr of a given pod with this command:
oc get pods # list all pods in your project
oc logs <pod-name>
This can be useful to observe the correct functioning of your application.
You can fine tune the gunicorn configuration through the environment variable APP_CONFIG
that, when set, should point to a config file as documented here.
When using one of the templates provided in this repository, this environment variable has its value automatically generated. For security purposes, make sure to set this to a random string as documented here.
At times you might want to manually execute some command in the context of a running application in OpenShift. You can drop into a Python shell for debugging, create a new user for the Django Admin interface, or perform any other task.
You can do all that by using regular CLI commands from OpenShift.
To make it a little more convenient, you can use the script openshift/scripts/run-in-container.sh
that wraps some calls to oc
.
In the future, the oc
CLI tool might incorporate changes
that make this script obsolete.
Here is how you would run a command in a pod specified by label:
-
Inspect the output of the command below to find the name of a pod that matches a given label:
oc get pods -l <your-label-selector>
-
Open a shell in the pod of your choice. Because of how the images produced with CentOS and RHEL work currently, we need to wrap commands with
bash
to enable any Software Collections that may be used (done automatically inside every bash shell).oc exec -p <pod-name> -it -- bash
-
Finally, execute any command that you need and exit the shell.
Related GitHub issues:
The wrapper script combines the steps above into one. You can use it like this:
./run-in-container.sh ./manage.py migrate # manually migrate the database
# (done for you as part of the deployment process)
./run-in-container.sh ./manage.py createsuperuser # create a user to access Django Admin
./run-in-container.sh ./manage.py shell # open a Python shell in the context of your app
If your Django pods are labeled with a name other than "django", you can use:
POD_NAME=name ./run-in-container.sh ./manage.py check
If there is more than one replica, you can also specify a POD by index:
POD_INDEX=1 ./run-in-container.sh ./manage.py shell
Or both together:
POD_NAME=django-example POD_INDEX=2 ./run-in-container.sh ./manage.py shell
Code released under the Apache License, Version 2.0.