forked from hackohio/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
45 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,14 @@ JWT_SECRET='shhhh super secret code here bro' | |
ROOT_URL='http://localhost:3000' | ||
|
||
# Credentials for the admin user created at app initialization | ||
ADMIN_EMAIL='admin@example.org' | ||
ADMIN_EMAIL='admin@example.com' | ||
ADMIN_PASS='party' | ||
|
||
# Used to send verification, registration, and confirmation emails | ||
EMAIL_ADDRESS='[email protected]' | ||
HACKATHON_NAME='Hackathon' | ||
TWITTER_HANDLE='hackathon' | ||
FACEBOOK_HANDLE='hackathon' | ||
EMAIL_CONTACT='Hackathon Team <[email protected]>' | ||
EMAIL_HOST='smtp.gmail.com' | ||
EMAIL_USER='[email protected]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,22 @@ | |
}, | ||
"ADMIN_EMAIL": { | ||
"description": "Credentials for the admin user created at app initialization", | ||
"value": "admin@example.org" | ||
"value": "admin@example.com" | ||
}, | ||
"ADMIN_PASS": "party", | ||
"EMAIL_ADDRESS": { | ||
"description": "The email address that is included in the 'email us' link at the bottom of emails.", | ||
"value": "[email protected]" | ||
}, | ||
"HACKATHON_NAME": "Hackathon", | ||
"TWITTER_HANDLE": { | ||
"description": "Everything after https://twitter.com/", | ||
"value": "hackathon" | ||
}, | ||
"FACEBOOK_HANDLE": { | ||
"description": "Everything after https://facebook.com/", | ||
"value": "hackathon" | ||
}, | ||
"EMAIL_CONTACT": { | ||
"description": "Used to send verification, registration, and confirmation emails", | ||
"value": "Hackathon Team <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ | |
<td valign="top" style="text-align: center" class="bodyContent" mc:edit="body_content00"> | ||
Thanks, | ||
<br /> | ||
The HackMIT Team | ||
The {{ hackathonName }} Team | ||
</td> | ||
</tr> | ||
|
||
|
@@ -54,13 +54,13 @@ | |
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="templateFooter"> | ||
<tr> | ||
<td valign="top" class="footerContent" mc:edit="footer_content00"> | ||
<a href="https://twitter.com/hackmit">Follow on Twitter</a> <a href="https://facebook.com/HackMIT">Like on Facebook</a> | ||
<a href="mailto:[email protected]">Email Us</a> | ||
<a href="https://twitter.com/{{ twitterHandle }}">Follow on Twitter</a> <a href="https://facebook.com/{{ facebookHandle }}">Like on Facebook</a> | ||
<a href="mailto:{{ emailAddress }}">Email Us</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td valign="top" class="footerContent" style="padding-top:0;" mc:edit="footer_content01"> | ||
<em>Copyright © HackMIT 2015, All rights reserved.</em> | ||
<em>Copyright © {{ hackathonName }} 2017, All rights reserved.</em> | ||
<br /> | ||
</td> | ||
</tr> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ | |
<td valign="top" style="text-align: center" class="bodyContent" mc:edit="body_content00"> | ||
Thanks, | ||
<br /> | ||
The HackMIT Team | ||
The {{ hackathonName }} Team | ||
</td> | ||
</tr> | ||
|
||
|
@@ -60,13 +60,13 @@ | |
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="templateFooter"> | ||
<tr> | ||
<td valign="top" class="footerContent" mc:edit="footer_content00"> | ||
<a href="https://twitter.com/hackmit">Follow on Twitter</a> <a href="https://facebook.com/HackMIT">Like on Facebook</a> | ||
<a href="mailto:[email protected]">Email Us</a> | ||
<a href="https://twitter.com/{{ twitterHandle }}">Follow on Twitter</a> <a href="https://facebook.com/{{ facebookHandle }}">Like on Facebook</a> | ||
<a href="mailto:{{ emailAddress }}">Email Us</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td valign="top" class="footerContent" style="padding-top:0;" mc:edit="footer_content01"> | ||
<em>Copyright © HackMIT 2015, All rights reserved.</em> | ||
<em>Copyright © {{ hackathonName }} 2017, All rights reserved.</em> | ||
<br /> | ||
</td> | ||
</tr> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
<tr> | ||
<td valign="top" style="text-align: center" class="bodyContent" mc:edit="body_content00"> | ||
<h1>Verify Your Email</h1> | ||
<h3>Thanks for signing up for HackMIT 2015!</h3> | ||
<h3>Thanks for signing up for {{ hackathonName }}!</h3> | ||
To verify your email, click the button below. | ||
<br /> | ||
<br /> | ||
|
@@ -45,7 +45,7 @@ | |
<td valign="top" style="text-align: center" class="bodyContent" mc:edit="body_content00"> | ||
Thanks, | ||
<br /> | ||
The HackMIT Team | ||
The {{ hackathonName }} Team | ||
</td> | ||
</tr> | ||
|
||
|
@@ -60,13 +60,13 @@ | |
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="templateFooter"> | ||
<tr> | ||
<td valign="top" class="footerContent" mc:edit="footer_content00"> | ||
<a href="https://twitter.com/hackmit">Follow on Twitter</a> <a href="https://facebook.com/HackMIT">Like on Facebook</a> | ||
<a href="mailto:[email protected]">Email Us</a> | ||
<a href="https://twitter.com/{{ twitterHandle }}">Follow on Twitter</a> <a href="https://facebook.com/{{ facebookHandle }}">Like on Facebook</a> | ||
<a href="mailto:{{ emailAddress }}">Email Us</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td valign="top" class="footerContent" style="padding-top:0;" mc:edit="footer_content01"> | ||
<em>Copyright © HackMIT 2015, All rights reserved.</em> | ||
<em>Copyright © {{ hackathonName }} 2017, All rights reserved.</em> | ||
<br /> | ||
</td> | ||
</tr> | ||
|