Ruma is an agile Kanban-based project and task management web app. On this platform, you'll be able to create boards, distribute tasks across columns, and enhance productivity. The goal is to simplify project tracking, task allocation, deadlines, and routines.
- π Introduction
- π Table of contents
- βοΈ Technologies
- π₯ Installation
- βοΈ Settings
- π How to run?
- π Support links and tutorials
- π¨π½β𦱠Author
To clone the application on your own device, simply run the following command in the terminal:
git clone https://github.com/rodrigsmor/kanban-app.git
Make sure you have the git CLI installed correctly on your device. If you don't have git installed, you can find out how to do this by clicking here.
First of all, in order to run the application, you need to create an .env
file in the root directory, in which you will define the application's environment variables.
Starting with the database connection environment variables, you will need to configure the following variables:
POSTGRES_DB=<the database name>
POSTGRES_USER=<the database username>
POSTGRES_PASSWORD=<the database userβs password>
DB_PORT=<the host port of your database>
# pay attention to setting the correct values in the database URL
DATABASE_URL=postgres://<database username>:<database password>@db:<database port>/<database name>?schema=public
Once the database variables have been defined, you will need to define other service environment variables related to security, service integration and other details that are important for the smooth running of the application.
# SERVICES PORTS
# You can set the ports however you like
API_PORT=<The pattern is 3000>
FRONTEND_PORT=<The patterns is 3001>
# SECURITY
JWT_SECRET_KEY=<set your secret key to make your API more secure!>
ENCRYPT_SALT=<set an ecrypt salt>
Whew! To complete our configuration, you just need to set some environment variables to allow the application to send emails using the nodemailer
library. You will need to set the environment variables below:
# EMAIL SENDER
MAILER_USER=<your e-mail address>
MAILER_PASS=<your e-mail password>
MAILER_SENDER=<the e-mail address responsible for sending the e-mails>
MAILER_HOST=<the SMTP host based on your e-mail address>
Yahoo! You have finished configuring the application and should now be able to run it on your own device.
With everything set up correctly, we can now run the application. First of all, you need to build the container images with docker compose. To do this, run the following command in your terminal (remember to run it in the root directory of the project):
docker-compose build
Once the image has been built, simply generate the migrations to the database using prisma
, so that you can keep the data and have a more dynamic experience with the application. Just run the command below:
docker-compose run backend npx prisma migrate dev
Thatβs it! Now you can fully enjoy the application. Just run it on your own device.
Now that all the settings have been made, you can proceed with running the application. To do this, simply run the following command:
docker-compose up
In case the migrations and other settings have been made, you can build and run the container image by executing the following command:
docker-compose up --build
In case you want to access the application's documentation, follow the steps above and, once the application is running, simply access the links below:
- API DOCUMENTATION:
http://localhost:3000/docs
That's it! You now have access to an arsenal of information about how the application works and its routes.
If you want to run tests, just run the following commands:
# run backend tests
docker-compose run backend npm run test
- π Nest.js documentation: https://docs.nestjs.com/
- π Next.js documentation: https://nextjs.org/docs
- π Docker documentation: https://docs.docker.com/
- π SMTP nodemailer: https://nodemailer.com/smtp/
- π PostgreSQL docker host: https://hub.docker.com/_/postgres
- π Jest documentation: https://jestjs.io/docs/getting-started
- π GIT installing tutorial: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
Developed with love by Rodrigo Moreira ππ