Reduce allocations and improve perf over 50%

This commit is contained in:
Vikram Rangnekar
2019-06-01 02:03:09 -04:00
parent 58408eadc1
commit 7c704637e8
18 changed files with 1728 additions and 1273 deletions

2
demo
View File

@ -1,7 +1,7 @@
#!/bin/bash
if [ "$1" == "setup" ]; then
docker-compose -f rails-app/demo.yml run rails_app rake db:create db:migrate db:seed
docker-compose -f rails-app/demo.yml run web rake db:create db:migrate db:seed
elif [ "$1" == "run" ]; then
docker-compose -f rails-app/demo.yml up
else