forked from the-teacher/rails7-startkit
-
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
Ilya N. Zykin
committed
Feb 23, 2023
1 parent
8a519dd
commit 1a7c0e6
Showing
9 changed files
with
51 additions
and
6 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,17 @@ | ||
# DotEnv file for All Environments | ||
# | ||
# It is added to the repo to provide most common and required ENV vars | ||
# To demonstrate a full list of variables that we need for the application | ||
# | ||
# `config/credentials.yml.enc` and `/config/master.key` were deleted | ||
# `Rails7. StartKit` does not rely on them for now | ||
# | ||
RAILS_VERSION=7.0.4.2 | ||
SECRET_KEY_BASE=abracadabra | ||
ENV_NAME=unknown | ||
|
||
REDIS_HOST=redis | ||
REDIS_PORT=6379 | ||
|
||
ELASTIC_HOST=elastic | ||
ELASTIC_PORT=9200 |
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,5 @@ | ||
# DotEnv file for `development` environment | ||
# | ||
# This file should redefine `.env` and setup environment specific values | ||
# | ||
ENV_NAME=development |
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,5 @@ | ||
# DotEnv file for `production` environment | ||
# | ||
# This file should redefine `.env` and setup environment specific values | ||
# | ||
ENV_NAME=production |
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,4 @@ | ||
# DotEnv file for `test` environment | ||
# | ||
# This file should redefine `.env` and setup environment specific values | ||
ENV_NAME=test |
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
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
This file was deleted.
Oops, something went wrong.