Mapping translations of feminist literature in Europe 1750-1930.
Mark Turner Fiona Galston Kate Court
Laura Kirkley
James Cummings
Tiago Sousa Garcia
The application is built on Angular 7.2. It uses NPM for its package management and Angular CLI for its build process.
The development build uses a generic node 8 container with a mounted volume containing all the source code. The compose file uses the command option to pass a sequence of bash commands to setup the environment.
The full command can be seen in the docker-compose-dev.yaml
file.
Run the container using docker compose
docker-compose -f docker-compose-dev.yaml up -d
The container will start immediately but the application will take some time to start whilst it installs all the dependencies. Once it has started it will be available on localhost:4200. This command runs the container in detached mode so there will be no log output. To view logs run
docker-compose -f docker-compose-dev.yaml logs client
Alternatively to always see the log output, run in attached mode with
docker-compose -f docker-compose-dev.yaml up
To enter the container run
docker-compose -f docker-compose-dev.yaml exec client bash