This is a repository for the DevOps Workshop. It contains a simple Node.js application for demonstration purposes. The application is a simple web server that listens on port 3000 and returns a "Hello, World!" message. The application also contains a simple test suite that uses Jest. The aim of this repository is to demonstrate the basic concepts of DevOps, such as version control, branching strategies and CI/CD.
- Clone the repository
git clone <REPOSITORY_URL>
- Install the dependencies
npm install
To start the server, run:
npm start
The server will be available at http://localhost:3000.
To run the tests, use:
npm test