-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Root was set to show Newsletters #11
- Loading branch information
Showing
12 changed files
with
27 additions
and
60 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 |
---|---|---|
|
@@ -49,4 +49,4 @@ build/ | |
*.log | ||
config/environment.yml | ||
config/mongoid.yml | ||
config/mongoid.yml | ||
config/secrets.yml |
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 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
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,10 +1,7 @@ | ||
%table.table.table-striped | ||
%tr | ||
%strong Newsletters | ||
-@newsletters.each do |news| | ||
%tr | ||
%td | ||
=link_to news.sent_on, newsletter_path(news) | ||
%td | ||
=link_to "Edit", edit_newsletter_path(news) | ||
%td | ||
=link_to "Delete", newsletter_path(news), method: :delete | ||
%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 |
---|---|---|
|
@@ -12,26 +12,32 @@ | |
# repository - Git repo to clone from. (needed by mina/git) | ||
# branch - Branch name to deploy. (needed by mina/git) | ||
|
||
set :domain, '162.243.86.174' | ||
set :deploy_to, '/home/deploy/projects/lightair/production' | ||
set :repository, '[email protected]:joshsoftware/lightair.git' | ||
set :branch, 'master' | ||
set :domain, 'lightair.com' | ||
set :deploy_to, '/home/basnal/www/lightair.com' | ||
set :repository, '[email protected]:joshsoftware/lightair.git' | ||
set :branch, 'master' | ||
set :identity_file, '/home/basnal/.ssh/id_rsa' | ||
set :rails_env, 'production' | ||
set :term_mode, nil | ||
|
||
set :current_path, 'current' | ||
|
||
# Manually create these paths in shared/ (eg: shared/config/database.yml) in your server. | ||
# They will be linked in the 'deploy:link_shared_paths' step. | ||
|
||
set :shared_paths, ['config/mongoid.yml', 'log', 'tmp', | ||
'config/initializers/google_oauth.rb', | ||
'config/environment.yml'] | ||
|
||
# Optional settings: | ||
set :user, 'deploy' # Username in the server to SSH to. | ||
set :user, 'basnal' # Username in the server to SSH to. | ||
# set :port, '30000' # SSH port number. | ||
|
||
# This task is the environment that is loaded for most commands, such as | ||
# `mina deploy` or `mina rake`. | ||
task :environment do | ||
# For those using RVM, use this to load an RVM version@gemset. | ||
invoke :'rvm:use[ruby-2.1.2-p95@gemset]' | ||
invoke :'rvm:use[ruby-2.1.2@lightair]' | ||
end | ||
|
||
# Put any custom mkdir's in here for when `mina setup` is ran. | ||
|
@@ -41,17 +47,23 @@ | |
queue! %[mkdir -p "#{deploy_to}/shared/log"] | ||
queue! %[chmod g+rx,u+rwx "#{deploy_to}/shared/log"] | ||
|
||
queue! %[mkdir -p "#{deploy_to}/shared/tmp"] | ||
queue! %[chmod g+rx,u+rwx "#{deploy_to}/shared/tmp"] | ||
|
||
queue! %[mkdir -p "#{deploy_to}/shared/config"] | ||
queue! %[chmod g+rx,u+rwx "#{deploy_to}/shared/config"] | ||
|
||
queue! %[touch "#{deploy_to}/shared/config/mongoid.yml"] | ||
queue! %[chmod g+rx,u+rwx "#{deploy_to}/shared/config/mongoid.yml"] | ||
|
||
queue! %[mkdir "#{deploy_to}/shared/config/initializers"] | ||
queue! %[chmod g+rx,u+rwx "#{deploy_to}/shared/config/initializers"] | ||
|
||
queue! %[touch "#{deploy_to}/shared/config/initializers/google_oauth.rb"] | ||
queue! %[chmod g+rx,u+rwx "#{deploy_to}/shared/config/initializers/google_oauth.rb"] | ||
|
||
queue! %[touch "#{deploy_to}/shared/config/initializers/environment.yml"] | ||
queue! %[chmod g+rx,u+rwx "#{deploy_to}/shared/config/initializers/environment.yml"] | ||
queue! %[touch "#{deploy_to}/shared/config/environment.yml"] | ||
queue! %[chmod g+rx,u+rwx "#{deploy_to}/shared/config/environment.yml"] | ||
|
||
end | ||
|
||
|
@@ -77,4 +89,3 @@ | |
# - http://nadarei.co/mina/tasks | ||
# - http://nadarei.co/mina/settings | ||
# - http://nadarei.co/mina/helpers | ||
|
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.