Skip to content

rmeissn/fixit_students

Repository files navigation

Fixit Students!

Build Status License Language Framework Webserver LinesOfCode

This repository contains code of a NodeJS based Microservice. The service has some errors that shall be fixed by students of the Leipzig University, course SWT-16.

Remember to exchange badge urls when forking!

Where to start developing?


Run the following commands on your command-line and have a look at the output.

npm run lint
npm run test:integration
npm run coverage
npm run countLOC

If you want to dig through the code, have a look at the file server.js, that is the main routine of this service. Follow the require(...) statements to dig trough the entire code in the right order.

If you want to have a look at tests, head over to the folder tests/. We're using Mocha and Chai for our purposes.

Since we're developing our application with NodeJS, we're using npm as a task runner. Have a look at the file's /package.json script section to obtain an overview of available commands. Some are:

# Run syntax check and lint your code
npm run lint

# Run unit tests
npm run unit:test

# Start the application
npm start
...

You want to checkout this cool service? Simply start the service by runningy npm start and head over to: http://localhost:3000/documentation. We're using swagger to have this super cool API discrovery/documentation tool. BTW.: Did you already discoverd the super easy swagger integration inside /routes.js? Tags 'api' and 'description' were everything we needed to add.

What's about Continuous Integration/Delivery?


Continuous Integration and possibly Continuous Delivery is currently setup by using the (for OSS projects) free to use web application Travis-CI. By clicking on the first badge (see at the top), you will be redirected to Travis-CI. There you can have a look at all the different build stages.

We've also setup Code Coverage reports. This is done by Coveralls. Just click on the coverage badge and you'll be redirected to our corresponding Coveralls project.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published