Skip to content

uo265488/radarin_en2a

 
 

Repository files navigation

CI for radarin codecov Codacy Badge

Radarin project structure

Link to the deployed application: radarin. Note that sometimes it can take a while to load because Heroku in the free plan, takes the containers to sleep when they are not used for some time and taking them up takes time.

Quick start guide

If you want to execute the project you will need git, Node.js and npm and Docker. Make sure the three of them are installed in your system. Download the project with git clone https://github.com/Arquisoft/radarin_en2a.git. The fastest way to launch everything is with docker:

cp -r ./restapi/client/ ./webapp/restapi-client/
docker-compose up --build

This will create two docker images as they don't exist in your system (the webapp and the restapi) and launch a mongo container database. It will also launch Prometheus and Grafana containers to monitor the webservice. You should be able to access everything from here:

If you want to run it without docker (even though you still need docker to run the mongo db database):

cd restapi
mkdir data
sudo docker run -d -p 27017:27017 -v `pwd`/data:/data/db mongo

Compile and run the web app:

cd webapp
npm install
npm start

Now the webservice:

cd restapi
npm install
npm start

You should be able to access the application in http://localhost:3000 and the documentation in http://localhost:3000/docs

To run the mobileapp you need to set up the Android development environment. Then:

cd mobileapp
npm install
npm run android

Developers

  • Marina Vega Fernández
  • Jorge Arias Tosar
  • Alonso Gago Suárez
  • Alejandro Aguirre López

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 80.2%
  • Scala 6.4%
  • Java 3.8%
  • CSS 3.3%
  • Objective-C 2.7%
  • Dockerfile 1.1%
  • Other 2.5%