https://github.com/imb11/controlify-id-db
https://github.com/imb11/controlify-id-db
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/imb11/controlify-id-db
- Owner: IMB11
- Created: 2023-08-01T21:19:51.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-04T17:36:51.000Z (almost 3 years ago)
- Last Synced: 2025-01-27T13:48:39.712Z (over 1 year ago)
- Language: TypeScript
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation Instructions
Requires nodejs 19+ and pm2:
### Installing PM2
```
npm install --global pm2
```
### Installing Project
Run this in the project root.
```
npm install
```
### Running the pm2 instance
Launching the instance:
```
pm2 start npm --name "Controlify Identification API" -- start
```
Making sure it restarts if the server restarts/shuts down suddenly:
```
pm2 startup # follow the instructions.
```
Saving the instances for startup:
```
pm2 save
```