-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KBP-175 KBP-181 #time 1h fix app_name errors
- Loading branch information
İsmail Akbudak
committed
Jan 8, 2018
1 parent
e164182
commit dae9146
Showing
5 changed files
with
31 additions
and
13 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 |
---|---|---|
@@ -1,4 +1,10 @@ | ||
# <%= app_name.capitalize %> | ||
|
||
# TODOs | ||
➜ ✗ npm install jscs -g | ||
➜ ✗ docker-compose build | ||
➜ ✗ docker-compose run app bundle | ||
➜ ✗ docker-compose run app bundle exec rails db:create | ||
➜ ✗ docker-compose run app bundle exec rails db:migrate | ||
➜ ✗ docker-compose run app bundle exec rails db:seed | ||
➜ ✗ docker-compose up | ||
Look: localhost:3000 or lvh.me:3000 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
Admin.create(email: "admin@#{app_name}.com", name: 'Admin', surname: 'Admin', password: '12341234', password_confirmation: '12341234') | ||
Admin.create(email: 'admin@<%= app_name %>.com', name: 'Admin', surname: 'Admin', password: '12341234', password_confirmation: '12341234') |
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
6 changes: 3 additions & 3 deletions
6
templates/recipient_interceptor/recipient_interceptor_settings.yml.erb
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,4 +1,4 @@ | ||
email: | ||
sandbox: sandbox@#{app_name}.com | ||
noreply: no-reply@#{app_name}.com | ||
admin: admin@#{app_name}.com | ||
sandbox: sandbox@<%= app_name %>.com | ||
noreply: no-reply@<%= app_name %>.com | ||
admin: admin@<%= app_name %>.com |