Skip to content

Latest commit

 

History

History

Server

Server side

How to Install and run it?

Before running the backend project, we need to check that you are in the server route (subfolder) in terminal, if not, copy this.

cd Server/

Lets install all dependencies with next script.

npm install

Then, lets create a container runnig our dataBase Mongo, it's already configured.

npm run docker

To build our project (turn into .js), we just run next script.

npm run build

Once it is build, we can run our server build.

npm run start

But if you want to make changes or want run in dev (row code), type this script.

npm run dev