Sub-project under the BioHubBC project, the source of BC's taxonomy data.
The objectives for the BioHubBC Taxonomy project are:
git clone https://github.com/bcgov/biohubbc-taxonomy.git
If prompted, install Docker using Hyper-V (not WSL 2)
This setup for biohub taxonomy uses volumes to support live reload.
To leverage live reload you will need to ensure Docker is running using Hyper-V (not the WSL2 engine).
Use the WSL 2 based engine
is unchecked.Apply & Restart
Enable Hyper-V using Powershell
: https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
Use the WSL 2 based engine
setting is still uncheckedmake
commandbrew install make
choco install make
Note: you will need to run choco commands in a terminal as administrator
You can use any code IDE you prefer, though VSCode is recommended.
For convenience, you can install all node_modules by running the following command from the repo's root folder.
make install
You can also manually run npm install
in each of the /api/
, /app/
, and /database/
folders.
Note: Run all make commands from the root folder of the repo.
Note: Run all commands in a terminal that supports make. On Mac you can use the default Terminal
, on Windows you can use git-bash
.
./env
file.This will copy ./env_config/env.docker
to ./.env
.
This should only need to be run once.
This file may need additional editing to provide secrets for external services (like S3).
make env
Result of running make env
for the first time:
Starts all applications (database, api, and web app).
make web
Result of running make web
(condensed to only show the important parts):
api:
localhost:6100/api/
app:
localhost:7100
See ./Makefile
for all available commands.
Note: Run all make commands from the root folder of the repo.
make help
Will run npm install
in each of the project folders (api, app, database).
make install
Will stop and delete the biohub taxonomy docker containers.
This is useful when you want to clear out all database content, returning it to its initial default state.
After you've run make clean
, running make web
will launch new containers, with a fresh instance of the database.
make clean
make log-api
make log-app
make log-db
make log-db-setup
Will run the projects code linter and attempt to fix all issues found.
Note: Not all formatting issues can be auto-fixed.
make lint-fix
Will run the projects code formatter and attempt to fix all issues found.
Note: Not all formatting issues can be auto-fixed.
make format-fix
This is useful if you want to access the PSQL database through the CLI.
See DBeaver for a GUI-centric way of accessing the PSQL database.
make database
make api
make app
docker ps
docker ps -a
What a successfully built/run set of docker containers looks like:
Note: The exited container is correct, as that container executes database migrations and then closes
docker logs <container id or name>
Include -f
to "follow" the container logs, showing logs in real time
Over a long period time, Docker can run out of storage memory. When this happens, docker will log a message indicating it is out of memory.
The below command will delete docker artifacts to recover docker hard-drive space.
See documentation for OPTIONS.
docker system prune [OPTIONS]
If you get an error saying the make
command is not found, you may need to install it first.
See Ensure you can run the make command
While trying to run a make command such as make web
, if you encounter an issue along the lines of:
E: Release file for http://deb.debian.org/debian/dists/buster-updates/InRelease is not valid yet (invalid for another 1d 1h 5min 13s). Updates for this repository will not be applied.
it may be possible that your system clock is out of date or not synced (dockerfile timezone has to match your machine timezone). In this case, make sure your timezone is correct and matches that of docker and restart your machine/terminal window and try again.
If you already had PSQL installed, it is likely that the default port 5432
is already in use and the instance running in Docker fails because it can't acquire that port.
DB_PORT
environment variable in .env
to something not in use (ex: 5433
).
make clean
and make web
to ensure the containers are re-built with the new variables.GUI-centric application for viewing/interacting with Databases.
Note: all of the above connection values can be found in the .env
file
Copyright 2019 Province of British Columbia
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.