Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guillaumefalourd/poc-cicd-herokuci
Poc of a factorial app for the building CI/CD workflow with Heroku CI the article below.
https://github.com/guillaumefalourd/poc-cicd-herokuci
heroku javascript poc
Last synced: 3 days ago
JSON representation
Poc of a factorial app for the building CI/CD workflow with Heroku CI the article below.
- Host: GitHub
- URL: https://github.com/guillaumefalourd/poc-cicd-herokuci
- Owner: GuillaumeFalourd
- License: mit
- Created: 2021-10-14T16:33:53.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T11:46:33.000Z (26 days ago)
- Last Synced: 2024-10-21T17:01:26.379Z (26 days ago)
- Topics: heroku, javascript, poc
- Language: JavaScript
- Homepage: https://dev.to/mwanjemike/build-a-ci-cd-pipeline-with-heroku-ci-3de9
- Size: 206 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# poc-cicd-herokuci
Poc of a factorial app for the building CI/CD workflow with Heroku CI using [this article](https://dev.to/mwanjemike/build-a-ci-cd-pipeline-with-heroku-ci-3de9) (won't work if no billing method registered on Heroku).
## How to run
Run `npm start` at the repository `root` directory, then access the endpoints on your navigator (e.g: `http://localhost:3000/`)
## How to test
Run `npm test` at the repository `root` directory:
```bash
> [email protected] test
> mocha *.test.js || trueFactorial test
✔ Factorial(0) = 1
✔ Factorial(1) = 1
✔ Factorial(5) = 120
✔ Factorial(171) = Infinity4 passing (7ms)
```