https://github.com/debricked/devops-home-task
https://github.com/debricked/devops-home-task
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/debricked/devops-home-task
- Owner: debricked
- License: mit
- Created: 2022-06-16T15:14:02.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-07T06:40:06.000Z (about 3 years ago)
- Last Synced: 2025-01-15T19:26:00.150Z (over 1 year ago)
- Language: JavaScript
- Size: 71.3 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Introduction
This is the base for Debricked's DevOps home task.
It provides a tiny Node.js web application with an equally tiny test suite.
## How to run the tests
Install all dependencies using `npm install`.
Run `npm test` to execute the test suite.
To do this locally, you need Node.js installed on your local machine. It is known to work with both Node 16 and Node 18.
## How to run the server
Install dependencies with `npm install`, and then run the server with `node app.js`.
If you only want to run the server, without tests, you can also run `npm install --omit=dev` to avoid installing development dependencies.