ActivityRank is a Discord bot focusing on flexible statistics and ranking. This repository hosts the website for ActivityRank, hosting FAQs and policies.
Thank you for deciding to contribute! Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please remember to run the yarn db:rebuild
script to initialize the database,
before running the app with yarn dev
.
We use Docker to run the website in production. To build an image locally, remember to include build-args:
$ docker build \
--build-arg GIT_COMMIT=$(git log --format=%h -n1) \
--build-arg APP_VERSION=$(git describe --tags --abbrev=0) \
-t activityrank/web:dev .
$ docker run --env-file .env -p3000:3000 --init --name activityrank/web activityrank/web:dev