aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiyush Dixit <79581397+PiyushDixit96@users.noreply.github.com>2021-05-10 21:30:40 +0530
committerGitHub <noreply@github.com>2021-05-10 21:30:40 +0530
commit213ffe3ce3e0e8d2fcf21f4a42b82a5bfa016d30 (patch)
treeab46fb728151ba69fcfea16eaf289ec4a70e0889
parent15d5ee1508689ad9ec24920514911a0b35bbf64c (diff)
Create app.json
-rw-r--r--app.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/app.json b/app.json
new file mode 100644
index 0000000..a64df24
--- /dev/null
+++ b/app.json
@@ -0,0 +1,29 @@
+{
+ "name": "binance-spot-order-notifier",
+ "description": "Binance does not currently offer notifications when orders are created, cancelled or fulfilled etc.. With this repo you will receive telegram notifications for your binance spot order status.",
+ "logo": "https://i.ibb.co/WGZzx6r/Binance-Coin-BNB-icon.png",
+ "repository": "https://github.com/PiyushDixit96/binance-order-notifier.git",
+ "keywords": ["node", "binance","bot","market","maker","algo","crypto","spot","order","notifier","notification"],
+ "env": {
+ "BINANCE_API_KEY": {
+ "description": "Your Binance API Key",
+ "required": true
+ },
+ "BINANCE_SECRET_KEY": {
+ "description": "Your Binance API Secret",
+ "required": true
+ },
+ "TELEGRAM_TOKEN": {
+ "description": "Telegram Key for your bot (To create one follow https://core.telegram.org/bots#6-botfather )",
+ "required": true
+ },
+ "TELEGRAM_CHAT_ID": {
+ "description": "Unique identifier for the target chat, Your Telegram Chat ID ",
+ "required": true
+ },
+ "TIME_ZONE_STRING": {
+ "description": "your local TIME ZONE STRING, default is 'Asia/Kolkata'",
+ "required": false
+ }
+ }
+ }