Skip to content

Commit 7fdf705

Browse files
committed
Final merge conflicts.
1 parent fd47b5e commit 7fdf705

File tree

3 files changed

+21
-23
lines changed

3 files changed

+21
-23
lines changed

.DS_Store

0 Bytes
Binary file not shown.

README.md

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ root
5353
4. In the .env file, configure the following environment variables for Twilio API, Slack Webhook, and Postgres URI. Refer to [Twilio](#-Twilio) setup section below. The Postgres URI is the only field that is required, others are optional.
5454
```js
5555
// .env
56-
TWILIO_NUMBER=''
57-
TWILIO_ACCOUNT_SID=''
58-
TWILIO_AUTH_TOKEN=''
59-
SERVICE_SID=''
60-
VERIFICATION_SERVICE_SID=''
61-
SLACK_WEBHOOK=''
62-
POSTGRES_URI=''
56+
TWILIO_NUMBER = ''
57+
TWILIO_ACCOUNT_SID = ''
58+
TWILIO_AUTH_TOKEN = ''
59+
SERVICE_SID = ''
60+
VERIFICATION_SERVICE_SID = ''
61+
SLACK_WEBHOOK = ''
62+
POSTGRES_URI = ''
6363
```
6464

6565
5. Create a folder called `security` in the project's top-level directory. Inside of the `security` folder, create two files `email.js` and `sysadmin.js`. These files will store variables related to the email notification service and system admin setup respectively.
@@ -112,13 +112,14 @@ To change the system admin password, create a new user with your preferred crede
112112
2. In order to manage Twilio SMS notifications follow the [step plan](https://www.twilio.com/docs/notify/quickstart/sms#messagingservice).
113113
3. Store your (i) Twilio number, (ii) Account Sid, (iii) Auth Token from twilio.com/console, (iv) SERVICE_SID, (v) verification service SID in a newly created .env file in the Docketeer folder in the following format:
114114
```js
115-
// .env.js
116-
MY_PHONE_NUMBER='your mobile number'
117-
TWILIO_ACCOUNT_SID='code from your console'
118-
TWILIO_AUTH_TOKEN='token from your console'
119-
SERVICE_SID='code from notify service instance'
120-
VERIFICATION_SERVICE_SID='code from verify service instance'
121-
```
115+
// .env.js
116+
MY_PHONE_NUMBER = 'your mobile number'
117+
TWILIO_ACCOUNT_SID = 'code from your console'
118+
TWILIO_AUTH_TOKEN = 'token from your console'
119+
SERVICE_SID = 'code from notify service instance'
120+
VERIFICATION_SERVICE_SID = 'code from verify service instance'
121+
```
122+
122123
4. Verification service was created [here](https://www.twilio.com/console/verify/services); code length and serviceSID can be taken from your Twilio account console.
123124
5. All historical messages from the Twilio account can be found [here](https://www.twilio.com/console/sms/logs).
124125

@@ -172,11 +173,11 @@ npm run test
172173
Read our [contributing guide](https://github.com/open-source-labs/Docketeer/blob/master/CONTRIBUTING.md) for more information on how to purpose bugfixes and improvements to Docketeer.
173174

174175
### Authors
175-
- Abigail Gerig [@4estgirl] (https://github.com/4estgirl) | [Linkedin] (https://www.linkedin.com/in/abigail-gerig/)
176-
- Trine Medina [@TrineMedina] (https://github.com/TrineMedina) | [Linkedin] (https://www.linkedin.com/in/trinemedina/)
177-
- Christian Looff [@cmlooff] (https://github.com/cmlooff) | [LinkedIn] (https://www.linkedin.com/in/christian-looff/)
178-
- Reuel Warner-Rosen [@Ruliwr] (https://github.com/Ruliwr) | [Linkedin] (https://www.linkedin.com/in/Ruliwr/)
179-
- Matt Dias [@Schmang13] (https://github.com/Schmang13) | [Linkedin] (https://www.linkedin.com/in/matthew-j-dias/)
176+
- Abigail Gerig [@4estgirl](https://github.com/4estgirl) | [Linkedin](https://www.linkedin.com/in/abigail-gerig/)
177+
- Trine Medina [@TrineMedina](https://github.com/TrineMedina) | [Linkedin](https://www.linkedin.com/in/trinemedina/)
178+
- Christian Looff [@cmlooff](https://github.com/cmlooff) | [LinkedIn](https://www.linkedin.com/in/christian-looff/)
179+
- Reuel Warner-Rosen [@Ruliwr](https://github.com/Ruliwr) | [Linkedin](https://www.linkedin.com/in/Ruliwr/)
180+
- Matt Dias [@Schmang13](https://github.com/Schmang13) | [Linkedin](https://www.linkedin.com/in/matthew-j-dias/)
180181
- Christina Son [@cson17](https://github.com/cson17) | [Linkedin](https://www.linkedin.com/in/christinason17/)
181182
- Fernando Luna [@lunaf-github](https://github.com/lunaf-github) | [Linkedin](https://www.linkedin.com/in/fernando-luna)
182183
- Austin Andrews [@austinandrews](https://github.com/austinandrews) | [Linkedin](https://www.linkedin.com/in/austinandrews17/)

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docketeer",
3-
"version": "6.0.0",
3+
"version": "7.0.0",
44
"license": "MIT",
55
"description": "A Docker Visualizer",
66
"author": "Team Docketeer",
@@ -10,9 +10,6 @@
1010
"dev:react": "cross-env NODE_ENV=development webpack-dev-server --config webpack.react.config.js --mode development",
1111
"dev": "concurrently \"cross-env NODE_ENV=development webpack-dev-server --config webpack.react.config.js --mode development\" \"nodemon server/server.js\" \"npm run dev:electron\"",
1212
"buildWeb": "webpack",
13-
"dist": "npm run compile && electron-builder",
14-
"dist-win": "npm run compile && electron-builder --win --x64",
15-
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
1613
"test": "jest --verbose"
1714
},
1815
"dependencies": {

0 commit comments

Comments
 (0)