Requirements

install npm
wget -qO- <https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh> | bash

## Or this command
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash

# Close and open terminal
nvm install --lts
nvm use --lts
# Verify node version
node --version # Must show v14.16.1
# Verify npm version
npm -v
install postgres
sudo apt install postgresql postgresql-contrib

How to run

  1. Clone this repository
  2. Install dependencies
npm i
  1. set your .env file or rename .env.exemple to .env

  2. Create te database

npm run createDB
  1. Set te table of databse
npm run createTable
  1. Run the project with
npm run dev