-Manuel López Zürcher
-Adriana Arias Coya
-Alicia Fernández Pushkina
-Jaime Sánchez Lorenzo
In this version we deploy the app locally without docker. In order to solve the problem that you will get for trying to run our project with mongo, follow these steps:
We will assume that you already have our project downloaded in your PC.
-
Go into our
restapi
folder. -
You will see a file called
.env_sample
with this contentDATABASE_URL = mongodb+srv://username:[email protected]/test
-
You will have to create in your repository your own file called
.env
, with the same content showed above, but updated with your MongoDb access data. If you don´t have access yet, contact us. -
Now, open one terminal, compile and run
restapi
. If everything went well, you will read database connected.cd restapi npm install npm start
-
Now the same with
webapp
. Don´t mind if you see some errors after install. These doesn´t affect the execution and will be removed in future versions.****cd webapp npm install npm start
If everthing went well, you should be able to access the application in http://localhost:3000.