Added some more scaffolding to the project to get going; added Foundation css to start with styles
This commit is contained in:
13
Rakefile
13
Rakefile
@ -1,8 +1,19 @@
|
||||
require 'bundler/setup'
|
||||
|
||||
task :setup do
|
||||
# Set bundle to install gems to local vendor path
|
||||
system("bundle config set --local path 'vendor/bundle'")
|
||||
# Install gems
|
||||
system("bundle install")
|
||||
end
|
||||
|
||||
namespace :server do
|
||||
task :start do
|
||||
ENV['APP_ENV'] = 'production'
|
||||
system("puma")
|
||||
end
|
||||
end
|
||||
|
||||
task :dev do
|
||||
system('rerun --quiet --dir="src/" puma')
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user