forked from jimmykarily/mycroft_offline
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rely on .env file for setup and runtime configuration
Removed .env file from git-repo because we don't want to share our secrets.
- Loading branch information
Showing
7 changed files
with
116 additions
and
73 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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
################################################################################################### | ||
# Generic Settings (devices, sso, market, account) | ||
################################################################################################### | ||
|
||
MYCROFT_DOMAIN=asdf.asdf | ||
SSO_BASE_URL=sso.asdf.asdf | ||
OAUTH_BASE_URL=sso.asdf.asdf | ||
|
||
SELENE_ENVIRONMENT=prod | ||
|
||
DB_HOST=db | ||
DB_NAME=mycroft | ||
DB_PORT=5432 | ||
DB_USER=selene | ||
|
||
REDIS_HOST=redis | ||
REDIS_PORT=6379 | ||
|
||
################################################################################################### | ||
# Market API Skills Setup (skills_setup) | ||
################################################################################################### | ||
|
||
GITHUB_USER=<todo> | ||
GITHUB_PASSWORD=<todo> | ||
|
||
################################################################################################### | ||
# Device API (devices) | ||
################################################################################################### | ||
|
||
EMAIL_SERVICE_HOST= | ||
EMAIL_SERVICE_PORT= | ||
EMAIL_SERVICE_USER= | ||
EMAIL_SERVICE_PASSWORD= | ||
|
||
# The speech to text engine requires a key to Google's STT API. | ||
GOOGLE_STT_KEY= | ||
|
||
# The weather skill requires a key to the Open Weather Map API | ||
OWM_KEY= | ||
OWM_URL=https://api.openweathermap.org/data/2.5 | ||
|
||
# The Wolfram Alpha skill requires an API key to the Wolfram Alpha API | ||
WOLFRAM_ALPHA_KEY= | ||
WOLFRAM_ALPHA_URL=https://api.wolframalpha.com | ||
|
||
################################################################################################### | ||
# Single Sign On API (sso) | ||
################################################################################################### | ||
|
||
# The password reset functionality sends an email to the user with a link to reset their password. | ||
# Selene uses SendGrid to send these emails so a SendGrid account and API key are required. | ||
SENDGRID_API_KEY= | ||
|
||
# Access to the Github API is required to support logging in with your Github account. | ||
# Details can be found here <https://developer.github.com/v3/guides/basics-of-authentication/> | ||
GITHUB_CLIENT_ID= | ||
GITHUB_CLIENT_SECRET= | ||
|
||
|
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.env | ||
storage | ||
generated | ||
generated |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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