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
- Clone this repository
- Install dependencies
npm i
-
set your .env file or rename .env.exemple to .env
-
Create te database
npm run createDB
- Set te table of databse
npm run createTable
- Run the project with
npm run dev