-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add more docs * Update README.md * Create config.example.json
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
# queue-starter | ||
|
||
[![Main CI](https://github.com/violinist-dev/queue-starter/actions/workflows/main.yml/badge.svg)](https://github.com/violinist-dev/queue-starter/actions/workflows/main.yml) | ||
|
||
## Installation | ||
|
||
- Clone the repository | ||
- Install dependencies with `npm install`. | ||
|
||
## Configuration | ||
|
||
Copy the file config.example.json to config.json. | ||
|
||
# License | ||
|
||
MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"token": "token", | ||
"healthCheckUrl": "https://ping", | ||
"hostname": "my-hostname", | ||
"baseUrl": "https://violinist.io", | ||
"canStartCloud": 0, | ||
"accessKeyId": "id", | ||
"runCloud": 0, | ||
"secretAccessKey": "key", | ||
"region": "eu-west-2", | ||
"apiVersion": "latest", | ||
"subnet": "subnet-abab", | ||
"maxQueueLength": 30 | ||
} |