ISCAN (Integrated Speech Corpus ANalysis) is a tool to manage and analyze corpora on a single server with support for multiple clients enriching and querying the corpora as needed. The ISCAN server contains tools to install/start/stop the databases that PolyglotDB (the Python API) uses.
Additionally, the ISCAN server is used to manage multiple different Polyglot databases, so users can isolate corpora as needed, and start and stop databases as they need access to them.
Note: At the moment, iscan-server is only supported on Ubuntu.
ISCAN server uses Docker. This containerization means that the only dependency the user must install is Docker itself.
- Install Docker for Ubuntu. It is easiest to install using the Install from repository method.
- Complete the post-installation instructions for Docker for Ubuntu. This will make it unnecessary to prepend Docker commands with
sudo. - Install Docker Compose, the tool for defining and running multi-container Docker applications.
First, clone the iscan-server repository to your machine:
git clone https://github.com/MontrealCorpusTools/iscan-server.git
Included are a Dockerfile and a docker-compose.yml. In order to build a Docker image from these files, navigate to the root of the repository and run:
docker-compose build
Then, run:
docker-compose up
This will launch the containers.
The first time you use iscan-server, you will need to make database migrations. In another terminal, while the containers are up, run:
docker-compose run app init
The needed migrations to perform will be detected and made.
The first time you use iscan-server, you will need to set up a username and password to log in with. In another terminal, while the containers are up, run:
docker-compose run app manage createsuperuser
This will begin a prompt that asks you for a username, email address, and password. Once you have filled them out, the prompt will close.
Then, you should be able to log in with your credentials. You should only need to perform this step once; from now on, whenever you start the server, you should be able to log in with your defined username and password. When finished, press :code:Ctrl+C to end the current server run.
To start the server and its containers using the Docker image, run:
docker-compose up
In your web browser, navigate to localhost:8080. You should see the I-SCAN web page.
To stop the server, press Ctrl+C only once. The terminal should show a Gracefully stopping... message and then exit.
To run the automatic tests, run:
./runtests.sh
This Docker instance is configured so that the contents of certain directories persist between runs of the server, and so that contents are constant between the local directory and the directory in the container. These local directories, located in the root of the repository, are:
polyglot_source/- the directory containing corpora to be loaded.polyglot_data/- the directory where corpus metadata will be storedpgdb/- the directory where the front-end code is storedpolyglot_server/- the directory containing the Django project for the server
Changes you make locally in these folders should persist into the container without needing to re-build the Docker image.
The docker-compose up command usefully regenerates fresh containers each time it is run, but old containers can take up space. To clean up containers on your machine, first stop all of them:
docker-compose stop
Then, remove them:
docker-compose rm