You can quickly start developing or testing against the API with minimal configuration. The following assumes you have Docker and its dependencies installed and running, and, presently, an up to date version of Nodejs.
- If using MacOS/OSX Install XCode tools
git clone https://github.com/SpeciesFileGroup/taxonworks.git
- to clone repository in directory of your choicecd taxonworks
docker-compose build
docker-compose up
- browse to
127.0.0.1:3000
if you can see something similar to below in your terminal window:webpack_1 | webpack: Compiled successfully.
- You should see the logon window.
- Wait for a while if the logon window does not load not load quickly.
- Use
ctrl-c
ordocker-compose down
in another local terminal to shutdown
- Minimally, you now need to Create a user from the console or Seed a project, users, and some data from the command line or Restore a database dump (see below)
- Commands in following sections assume you are running
docker-compose up
in another terminal. - To make changes simply edit the TaxonWorks source that you cloned into your local directory
- Changes are automatically applied and visible in the browser as they would be for the native environment.
- In most cases you need not restart the server or redo
docker-compose up
to see your changes, though there are some cases in which you will.
- In TaxonWorks
docker-compose
is configured to use Dockerfile.development - The container is mapped to the source on your local machine, what you see when you shell into the app is what is on your local file system.
- See documentation for Docker.
Two steps. Run docker-compose in daemon mode, then attach to the app. Server log/debugger entry point will appear in the window after requests.
docker-compose up -d
(If you are already runningdocker-compose up
stop it first)docker attach taxonworks_app_1
(Container name can be found withdocker ps
, but if app is running on taxonworks directorytaxonworks_app_1
is likely correct)
Get the container id from docker ps
docker stop 3dc4293eg17e
The database persists across use (e.g. docker builds, up/down). By default it is not the same as database described in the "native" environment approach.
TODO: move below to unified HOW TO in taxonworks_doc_
- Ensure the app is not running (you may stop it with
docker-compose stop app
), the database container needs to be running. docker-compose exec db psql -U postgres
drop database taxonworks_development;
create database taxonworks_development;
\q
- You may restart taxonworks now with
docker-compose start app
Assumes you have a prior export generated by rake tw:db:dump
- Drop and recreate the database to an empty state
docker-compose exec db -T pg_restore -U postgres -d taxonworks_development < /path/to/pg_dump.dump
- Depending on when the database was dumped restore errors about roles can be ignored, i.e. the process will "fail" but be successful.
- You may restart taxonworks now with
docker-compose start app
To fix this you may follow Post-installation steps for Linux, or use sudo
on docker
and docker-compose
commands.
- Ensure your
ruby -v
version matches the version in theGemfile
. You may need to update or install a new Ruby.
- Problem: It seems that sometimes the repository list update fails because of bad(?) internet connection. Difficult to replicate.
- Solution: Do nothing, just re-run
docker-compose build
again.
- Problem: Active Migration related error is observed in client browser after following installation process.
- Solution: The problem is patched in latest version, if you're still observing it after updating local TaxonWorks repository, re-open this issue with your problem.
- Problem: Likely you have
config/database.yml
already set up for your native local server or some other location that is not available - Solution: You can remove
config/database.yml
and let the startup process reconstruct it or make sure config for development environment is the same asconfig/database.yml.docker.compose.example
- If an app container is not shut down correctly (
docker-compose down
) it can leave the filetmp/server.pid
- On the local file system check to see if
/app/tmp/pids/server.pid
exists, if it does, delete it.
- Bring down the containers
docker-compose down
- Redo the build step
docker-compose build
- You may need to use
localhost
rather than0.0.0.0
where applicable in database calls.
- Try
docker images
anddocker rmi <id>
to cleanup old images.