From ebd0db28c8ccb3af2b76f5aae736b90aeda21d67 Mon Sep 17 00:00:00 2001 From: Anthony Eufemio Date: Tue, 23 Jun 2015 19:23:18 +0800 Subject: [PATCH] ignore app.json and use app.json.example for repo --- .gitignore | 1 + app.json.example | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 app.json.example diff --git a/.gitignore b/.gitignore index e7156bc..9acb73f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store +app.json */**/.DS_Store node_modules npm-debug.log diff --git a/app.json.example b/app.json.example new file mode 100644 index 0000000..edd3eba --- /dev/null +++ b/app.json.example @@ -0,0 +1,23 @@ +[ + { + "name" : "node-app", + "script" : "app.js", + "log_date_format" : "YYYY-MM-DD HH:mm Z", + "merge_logs" : false, + "watch" : false, + "max_restarts" : 10, + "exec_interpreter" : "node", + "exec_mode" : "fork_mode", + "env": + { + "NODE_ENV" : "production", + "RPC_HOST" : "localhost", + "RPC_PORT" : "8545", + "LISTENING_PORT" : "30303", + "INSTANCE_NAME" : "", + "CONTACT_DETAILS" : "", + "WS_SERVER" : "wss://stats.ethdev.com", + "WS_SECRET" : "see http://forum.ethereum.org/discussion/2112/how-to-add-yourself-to-the-stats-dashboard-its-not-automatic", + } + } +]