Merge pull request #10 from FourSigma/sm-examples-folder
Move rails-app to examples folder
This commit is contained in:
commit
450d77ccbd
demodocker-compose.yml
examples/rails-app
.gitignore.ruby-versionDockerfileGemfileGemfile.lockRakefiledemo.ymlentrypoint.sh
app
assets
config
images
javascripts
stylesheets
channels/application_cable
controllers
helpers
jobs
mailers
models
views
bin
config.ruconfig
application.rbboot.rbcable.ymlcredentials.yml.encdatabase.ymlenvironment.rb
environments
initializers
application_controller_renderer.rbassets.rbbacktrace_silencers.rbcontent_security_policy.rbcookies_serializer.rbdevise.rbfilter_parameter_logging.rbinflections.rbmime_types.rbsecret_tokens.rbsession_store.rbwrap_parameters.rb
locales
puma.rbroutes.rbspring.rbstorage.ymldb
migrate
20190322181705_devise_create_users.rb20190322181706_devise_create_customers.rb20190322181710_create_products.rb20190322200743_purchases.rb20190405042247_add_search_column.rb
schema.rbseeds.rblib
log
package.jsonpublic
storage
10
demo
10
demo
@ -1,13 +1,13 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
if [ "$1" == "start" ]; then
|
||||
echo "Downloading pre-built docker images"
|
||||
docker-compose -f rails-app/demo.yml pull
|
||||
docker-compose -f examples/rails-app/demo.yml pull
|
||||
echo "Setting up and deploying Super Graph and the demo Rails app"
|
||||
docker-compose -f rails-app/demo.yml run rails_app rake db:create db:migrate db:seed
|
||||
docker-compose -f rails-app/demo.yml up
|
||||
docker-compose -f examples/rails-app/demo.yml run rails_app rake db:create db:migrate db:seed
|
||||
docker-compose -f examples/rails-app/demo.yml up
|
||||
elif [ "$1" == "stop" ]; then
|
||||
docker-compose -f rails-app/demo.yml down
|
||||
docker-compose -f examples/rails-app/demo.yml down
|
||||
else
|
||||
echo "./demo [start|stop]"
|
||||
fi
|
@ -12,10 +12,10 @@ services:
|
||||
# - "6379:6379"
|
||||
|
||||
rails_app:
|
||||
build: rails-app/.
|
||||
build: examples/rails-app/.
|
||||
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
|
||||
volumes:
|
||||
- ./rails-app:/app
|
||||
- ./examples/rails-app:/app
|
||||
- /app/tmp
|
||||
ports:
|
||||
- "3000:3000"
|
||||
|
0
rails-app/app/controllers/concerns/.keep → examples/rails-app/app/assets/javascripts/channels/.keep
0
rails-app/app/controllers/concerns/.keep → examples/rails-app/app/assets/javascripts/channels/.keep
0
rails-app/app/helpers/application_helper.rb → examples/rails-app/app/helpers/application_helper.rb
0
rails-app/app/helpers/application_helper.rb → examples/rails-app/app/helpers/application_helper.rb
0
rails-app/app/mailers/application_mailer.rb → examples/rails-app/app/mailers/application_mailer.rb
0
rails-app/app/mailers/application_mailer.rb → examples/rails-app/app/mailers/application_mailer.rb
0
rails-app/app/views/layouts/mailer.html.erb → examples/rails-app/app/views/layouts/mailer.html.erb
0
rails-app/app/views/layouts/mailer.html.erb → examples/rails-app/app/views/layouts/mailer.html.erb
0
rails-app/app/views/layouts/mailer.text.erb → examples/rails-app/app/views/layouts/mailer.text.erb
0
rails-app/app/views/layouts/mailer.text.erb → examples/rails-app/app/views/layouts/mailer.text.erb
0
rails-app/app/views/products/_form.html.erb → examples/rails-app/app/views/products/_form.html.erb
0
rails-app/app/views/products/_form.html.erb → examples/rails-app/app/views/products/_form.html.erb
0
rails-app/app/views/products/index.html.erb → examples/rails-app/app/views/products/index.html.erb
0
rails-app/app/views/products/index.html.erb → examples/rails-app/app/views/products/index.html.erb
0
rails-app/config/environments/development.rb → examples/rails-app/config/environments/development.rb
0
rails-app/config/environments/development.rb → examples/rails-app/config/environments/development.rb
0
rails-app/config/environments/production.rb → examples/rails-app/config/environments/production.rb
0
rails-app/config/environments/production.rb → examples/rails-app/config/environments/production.rb
0
rails-app/config/initializers/inflections.rb → examples/rails-app/config/initializers/inflections.rb
0
rails-app/config/initializers/inflections.rb → examples/rails-app/config/initializers/inflections.rb
0
rails-app/config/initializers/mime_types.rb → examples/rails-app/config/initializers/mime_types.rb
0
rails-app/config/initializers/mime_types.rb → examples/rails-app/config/initializers/mime_types.rb
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user