From 469e37d73aa2a982b1e61a567184e5747ef65a09 Mon Sep 17 00:00:00 2001 From: ian ramzy Date: Sat, 28 Mar 2020 14:24:40 -0400 Subject: [PATCH] keep .env public and update readme --- .env | 6 +----- .env.template | 9 --------- README.md | 6 ------ 3 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 .env.template diff --git a/.env b/.env index bb783f6..0fe2bd6 100644 --- a/.env +++ b/.env @@ -2,8 +2,4 @@ # It takes like 2 mins to get a free twilio account https://www.twilio.com/login TWILIO_ACCOUNT_SID=ACfc9705a2b725a7a314995eb8635a9079 -TWILIO_AUTH_TOKEN=9ab36b8ac190d20687aff0561749dbc1 - -# Example data of how yours should look, these are NOT real credentials -# TWILIO_ACCOUNT_SID=ACfc9705a2b725a7a314995eb8635a1234 -# TWILIO_AUTH_TOKEN=9ab36b8ac190d20687aff0561234dbc1 +TWILIO_AUTH_TOKEN=9ab36b8ac190d20687aff0561749dbc1 \ No newline at end of file diff --git a/.env.template b/.env.template deleted file mode 100644 index 0319726..0000000 --- a/.env.template +++ /dev/null @@ -1,9 +0,0 @@ -# Required for all uses -# It takes like 2 mins to get a free twilio account https://www.twilio.com/login - -TWILIO_ACCOUNT_SID=YourAccountSID -TWILIO_AUTH_TOKEN=YourAccountAuthToken - -# Example data of how yours should look, these are NOT real credentials -# TWILIO_ACCOUNT_SID=ACfc1205a2b725a7a314995eb8635a1234 -# TWILIO_AUTH_TOKEN=9ab12b8ac190d20687aff0561234dbc1 diff --git a/README.md b/README.md index f1f405a..4e22713 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,6 @@ cd decentralized-video-chat ``` npm install ``` -* Create a `.env` file copying `.env.template` (You can copy the file using the command below). -``` -cp .env.template .env -``` -* Fill in your `Account SID` and `Auth Token` from your [Twilio console](https://www.twilio.com/console) -It takes 2 minutes to sign up for a free account. * Start the server ``` npm start