Skip to content

Contribute to Sr. Barriga

Mateus Souza edited this page Dec 20, 2022 · 1 revision

Development

Local Development

First you will need a mongodb instance. You may use docker compose to build a docker running mongo.

# Spinning up your environment
make build
# Then export a environment variable to the database or any URI to a mongodb
export MONGO_URI=mongodb://localhost:27017/dev
# if you want to avoid sending notifications to Telegram group:
export SEND_NOTIFICATION=0

OBS: You will need some users on your database, so you may import the people.json on project root file to the collection group.people.

Useful commands

# run lint on code base
$ make lint
# fix some lint problems
$ make fix
Clone this wiki locally