Skip to content

Commit bf9cdbe

Browse files
committed
Merge branch 'add-meal-password-implementation'
1 parent 8f4e122 commit bf9cdbe

File tree

144 files changed

+1596
-1263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+1596
-1263
lines changed

.babelrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env"
5+
]
6+
]
7+
}

.env-template

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# the environmental variables are either configured on the host platform, or they are provided in this file
3+
4+
# copy this file
5+
# rename the copy to .env
6+
# gitignore .env file
7+
# open .env file
8+
# supply your credentials in .env file
9+
# set EMAIL_ALERT_CONFIGURATION_COMPLETED: true
10+
11+
12+
SUBMIT_MEAL_PASSWORD=choose your password
13+
14+
EMAIL_HOST=your smtp server
15+
EMAIL_HOST_SMTP_PORT=465
16+
EMAIL_SENDER_USER=sender email address
17+
EMAIL_SENDER_PASSWORD=sender email password
18+
EMAIL_RECEIVER_USER=receiver email address
19+
EMAIL_ALERT_CONFIGURATION_COMPLETED=false

.gitignore

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
node_modules
22
.vscode
3-
yarn.lock
3+
yarn*
44
package-lock.json
5-
todos.txt
5+
todos*
6+
.env
7+
temp*
8+
server
9+
public/bundle.js
10+
public/main.css
11+
my-devil
612

713
# output file on linux
814
nohup.out
9-
10-
# environment variables for email alerts
11-
email-env.js
12-
13-

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: node index.js
1+
web: node server/server.js

README.md

Lines changed: 6 additions & 4 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)