From 312a49b818b9805e2e993d33f2c93fb91d19930c Mon Sep 17 00:00:00 2001 From: Boris Mann Date: Mon, 1 Aug 2016 09:09:43 -0700 Subject: [PATCH] Added gitignore for things that shouldn't be checked in, plus made a config template --- .gitignore | 7 +++++++ config.template.json | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .gitignore create mode 100644 config.template.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0789a52 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.DS_Store +nodeStorage/ +node_modules/ +publicFiles/ +privateFiles/ +config.json + diff --git a/config.template.json b/config.template.json new file mode 100644 index 0000000..873fe2d --- /dev/null +++ b/config.template.json @@ -0,0 +1,12 @@ +{ + "myPort": 1999, + "websocketPort": 2000, + "myDomain": "127.0.0.1:1999", + "where": { + "flUseLocalFilesystem": true, + "publicPath": "publicFiles/", + "privatePath": "privateFiles/" + }, + "twitterConsumerKey": "anm3unkb1mof7isav0bkxigby", + "twitterConsumerSecret": "niliunipnv4xpbhjpe4cedf7dby79hnrokfxhnkij2zpzyjero" +}