From e91a71a7c002dcb1e189e0d32c4137ba312d5f33 Mon Sep 17 00:00:00 2001 From: captain-pool Date: Mon, 31 Dec 2018 22:12:04 +0530 Subject: [PATCH 1/2] Fixed README Typo #280 --- Origami/outCalls/config.js | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Origami/outCalls/config.js b/Origami/outCalls/config.js index 9282ed2e..58b6163d 100644 --- a/Origami/outCalls/config.js +++ b/Origami/outCalls/config.js @@ -1,6 +1,6 @@ const appConfig = { - CLIENT_IP: process.env.HOST, - CLIENT_PORT: process.env.PORT, + CLIENT_IP: "127.0.0.1", + CLIENT_PORT: 8000, DROPBOX_API_KEY: "API_KEY" }; diff --git a/README.md b/README.md index a8616b4b..f56f004f 100644 --- a/README.md +++ b/README.md @@ -247,7 +247,7 @@ $ python3 --version `$ git clone --recursive https://github.com/Cloud-CV/Origami.git && cd Origami/` -2. Renaming `origami.env.sample.py` as `origami.env` and setting environment variables in `origami.env` +2. Renaming `origami.env.sample` as `origami.env` and setting environment variables in `origami.env` ``` $ cp origami.env.sample origami.env @@ -368,7 +368,7 @@ $ yarn run dev * Application name: Origami * Homepage URL: http://localhost:8000 * Application description: Origami - * Authorization callback URL: http://localhost:8000/accounts/github/login/callback/ + * Authorization callback URL: http://localhost:8000/auth/github/login/callback/ 3. Github will provide you with a client ID and secret Key, save these. From 1612328eb13a534b634c44a7e2514bb3db484940 Mon Sep 17 00:00:00 2001 From: captain-pool Date: Mon, 31 Dec 2018 22:41:18 +0530 Subject: [PATCH 2/2] Fixed Unintentional Commit (#280) --- Origami/outCalls/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Origami/outCalls/config.js b/Origami/outCalls/config.js index 58b6163d..9282ed2e 100644 --- a/Origami/outCalls/config.js +++ b/Origami/outCalls/config.js @@ -1,6 +1,6 @@ const appConfig = { - CLIENT_IP: "127.0.0.1", - CLIENT_PORT: 8000, + CLIENT_IP: process.env.HOST, + CLIENT_PORT: process.env.PORT, DROPBOX_API_KEY: "API_KEY" };