Note this project is generally functional but still experimental.
You need to have a database ready for local development. Ideally, you install and use MySQL server version 5.7, since this is what production uses. (A persistence image might be integrated here in the future.)
To create a new MySQL database and user for your project, provide your own values for database_name
, user_name
and user_password
with the following queries (and note them down for later use):
CREATE DATABASE database_name;
CREATE USER 'user_name'@'localhost' IDENTIFIED BY 'user_password';
GRANT ALL PRIVILEGES ON database_name.* TO 'user_name'@'localhost';
FLUSH PRIVILEGES;
This Django project expects other apps to be present in the form of Git submodules. These are defined in the .gitmodules
file in the root of this repository. This file facilitates simultaneous installation of both this superproject and its submodules.
To get Git to link the superproject and its submodules together correctly, it is advisable not to deviate from the installation steps outlined below. Even if you previously cloned any of the submodule repositories separately, it is best not to try to link them manually.
To clone the superproject along with its default submodules, run:
git clone --recurse-submodules [email protected]:acdh-oeaw/apis-rdf-devops.git
If you originally cloned the superproject as a standalone repository without submodules, you can still collect them later on. Use the following command at the project's root to do so:
git submodule update --init --recursive
As mentioned, the .gitmodules
file in the project root contains instructions for how Git should handle submodules. On first run of git submodule init
or git submodule update
, these settings are copied to your local clone's .git/config
file.
Submodules not relevant to all APIS Ontologies apps are set to update = none
in the file, which prevents Git from cloning them. Once this setting is present in your local .git/config
file, it cannot be overwritten again by execution of the git submodule init
and git submodule update
commands. Should you need any of these "disabled" submodules for your specific ontology, you need to manually modify the update strategy in .git/config
so the line reads update = checkout
.
After (re)enabling your additional submodules, have Git clone them with:
git submodule update
Django expects an app/directory named apis_ontology
to be present in the project root. In the case of this project, however, apis_ontology
is a symbolic link to a subdirectory within the apis-ontologies submodule where all files relevant to one particular APIS Ontologies app are saved.
When deploying to a live server or when developing locally with Docker, an environment variable $APIS_RDF_ONTOLOGY
needs to be present for automatic creation of the symlink. Its value is expected to be the name of the project directory within apis-ontologies to which the symlink should point.
For local development without Docker, the symlink needs to be created manually in the apis-rdf-devops root directory:
ln -s apis-ontologies/YOUR_PROJECT_DIR apis_ontology
In case the project directory does not exist yet, you will first have to create it, see Create a new APIS Ontologies application in the APIS Ontologies README.
There are two ways to set up your Python environment:
- with a Docker dev container in Visual Studio Code
- with a Python Virtual Environment using pipenv (independent of which IDE you use)
A great advantage of using remote containers is that all developers have exactly the same setup. Additionally, working with Docker containers achieves a real separation of environments, which is something that is not possible with virtual environments only.
For developing in VS Code you can use the Remote Container Plugin. The plugin basically needs three settings files, all of which need to placed in a .devcontainer
folder in the root directory:
- a Dockerfile holding the definition of the container for the app
- a
docker-compose.yml
file for orchestrating the app container in conjunction with the other containers needed (e.g. a database for local development) - and a
devcontainer.json
holding settings relevant to the dev container itself, e.g. forwarded ports, post-create and post-start commands and environment variables
If a .devcontainer
folder with the needed files is checked in the repository, and you have installed the remote container plugin in your VS Code installation, on opening of the repository, VS Code will ask you if you want to reopen it in the container. If you click on "reopen in container", the IDE will pull the needed images and start the containers.
The docker-compose.yml
file included in the apis-rdf-devops repository includes a service called tunnel:
tunnel:
image: cagataygurturk/docker-ssh-tunnel:0.0.1
volumes:
- $HOME/.ssh:/root/ssh:ro
environment:
TUNNEL_HOST: apis-tunnel
REMOTE_HOST: helios.arz.oeaw.ac.at
LOCAL_PORT: 3308
REMOTE_PORT: 3306
network_mode: service:db
It uses a configuration stored in a file called config
in the directory $HOME/.ssh:/root/ssh:ro
(you need to change the path to wherever your config is stored). The config file basically sets the options for the ssh tunnel:
Host apis-tunnel
HostName sisyphos.arz.oeaw.ac.at
IdentityFile ~/.ssh/id_rsa
User apis
ForwardAgent yes
TCPKeepAlive yes
ConnectTimeout 5
ServerAliveCountMax 10
ServerAliveInterval 15
The tunnel host set in the above config needs to be the name set in the environment variables in the docker-compose service. Additionally, you can set with environment variables in the docker-compose-service:
REMOTE_HOST
is the remote host we tunnel to. In our case,helios.arz.oeaw.ac.at
to make the remote (production) database accessible within the local containerLOCAL_PORT
is the local port to use for the tunnel. As we are using the same network as the database service, we cannot use 3306 since that port is already used by the local database. We therefore use 3308.
With these settings in place, you can access databases on helios under host db
and port 3308
. Therefore, something like mysql://jelinek:PASSWORD@db:3308/jelinek
should work.
At the repository's root, set up your virtual env and activate it:
pipenv install
pipenv shell
or
poetry install # include --with dev and your specific project group wherever applicable
poetry shell
Once you have set up your Python environment using either solution outlined above, get your Django application ready for use.
First, make sure all settings needed for local development are in place, see Configure local settings in the apis-ontologies README.
Next, within either your VS Code dev container or your Python Virtual Environment, run manage.py
at the project root using your local settings file, like so:
python manage.py version --settings=apis_ontology.settings.local_settings
If a new database was set up, it first needs to be migrated:
python manage.py migrate --settings=apis_ontology.settings.local_settings
Next, start a Django shell...
python manage.py shell --settings=apis_ontology.settings.local_settings
... and create an admin user (make up your own credentials):
from django.contrib.auth.models import User
User.objects.create_superuser('admin_user_name', None, 'admin_user_password')
Relationships between entities, along with their labels, are defined in
construct_properties()
in an individual ontology's models.py
file.
To initially create them in the database and to update/replace them later on,
the function has to be called explicitly.
The following management command does this for you and, on success, prints out the relationship labels (or "properties") which were created:
python manage.py create_relationships --settings=apis_ontology.settings.local_settings
(If you are running APIS in a container based on the provided Dockerfile, this
command is run automatically if you are setting the CREATE_RELATIONSHIPS
environment variable to True
)
Note: the above workflow for handling relationships is a workaround since properties are currently not defined as separate classes but instances as a result of a complicated trade-off.
Finally, start the server to:
python manage.py runserver --settings=apis_ontology.settings.local_settings
Projects occasionally need some processing logic only within their project scope. In order to avoid cluttering the main code base, project-specific scripts can be put into a subdirectory ontology_specific_scripts
within an individual ontology app.
The Jelinek project, for example, contains a script import_tei.py
– full path using symlink: apis_ontology/ontology_specific_scripts/import_tei.py
– which can be run like so:
python manage.py run_ontology_script import_tei --settings=apis_ontology.settings.local_settings