Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ertrzyiks/ketchup-server
https://github.com/ertrzyiks/ketchup-server
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ertrzyiks/ketchup-server
- Owner: ertrzyiks
- License: mit
- Created: 2017-07-18T20:28:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-22T12:20:56.000Z (about 7 years ago)
- Last Synced: 2024-12-15T20:15:58.075Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://ertrzyiks.github.io/ketchup-server/
- Size: 344 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ketchup
## Prerequisite
- Node 6.x
- NPM 5.x
- PostgreSQL (for production)### Development
Install dependencies
```
npm i
```and then start the server
```
npm start
```To run tests use:
```
npm test# the same but in watch mode
npm run test:watch
```To update Ava snapshots
```
npm run test:up
```### Production
```
npm i
npm run build
NODE_ENV=production npm run start:prod
```