Skip to content

Commit

Permalink
chore: add ecoconfig file
Browse files Browse the repository at this point in the history
  • Loading branch information
jimchen5209 committed May 3, 2023
1 parent 7b549b5 commit bddba0c
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions ecosystem.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"apps": [
{
"name": "MonoLock - ReadCard",
"script": "ReadCard.py",
"instances": "1",
"wait_ready": true,
"autorestart": true,
"max_restarts": 10,
"interpreter": ".venv/bin/python",
"watch": false,
"time": true
},
{
"name": "MonoLock - ReadLockerStatus",
"script": "ReadLockerStatus.py",
"instances": "1",
"wait_ready": true,
"autorestart": true,
"max_restarts": 10,
"interpreter": ".venv/bin/python",
"watch": false,
"time": true
},
{
"name": "MonoLock - Unlock",
"script": "Unlock.py",
"instances": "1",
"wait_ready": true,
"autorestart": true,
"max_restarts": 10,
"interpreter": ".venv/bin/python",
"watch": false,
"time": true
}
]
}

0 comments on commit bddba0c

Please sign in to comment.