mirror of
https://github.com/KhalidCEU/tallerDevops.git
synced 2026-06-21 04:32:34 +02:00
Sistemas Web I
- JavaScript 100%
|
|
||
|---|---|---|
| .github | ||
| .gitignore | ||
| eslint.config.mjs | ||
| index.js | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| server.js | ||
| server.test.js | ||
DevOps Workshop
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.
Prerequisites
Installation
- Clone the repository
git clone <REPOSITORY_URL>
- Install the dependencies
npm install
Usage
To start the server, run:
npm start
The server will be available at http://localhost:3000.
Testing
To run the tests, use:
npm test