Sistemas Web I
  • JavaScript 100%
Find a file
Khalid 3f47ad5abb
Merge pull request #2 from KhalidCEU/feat/CI
Merge 'feat/ci' into 'main'
2024-11-05 04:03:28 +01:00
.github feat: add deployment job to ci workflow 2024-11-05 03:54:01 +01:00
.gitignore feat: initial commit 2024-11-05 02:55:24 +01:00
eslint.config.mjs feat: initial commit 2024-11-05 02:55:24 +01:00
index.js feat: initial commit 2024-11-05 02:55:24 +01:00
package-lock.json feat: initial commit 2024-11-05 02:55:24 +01:00
package.json feat: initial commit 2024-11-05 02:55:24 +01:00
README.md feat: initial commit 2024-11-05 02:55:24 +01:00
server.js feat: initial commit 2024-11-05 02:55:24 +01:00
server.test.js feat: initial commit 2024-11-05 02:55:24 +01:00

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

  1. Clone the repository
git clone <REPOSITORY_URL>
  1. 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