RUN rails new your_app_name --database=postgresql --skip-jbuilder --master --javascript=esbuild --css=bootstrap --version 7.0.4 --skip-bundle
RUN ./bin/rails javascript:install:esbuild
RUN ./bin/rails css:install:bootstrap
- RUN
gh repo create your_app_name
- RUN
git remote add origin [email protected]:blairanderson/your_app_name.git
RUN be rake db:create db:migrate
ADD config.hosts << "app.lvh.me"
to development.rb
RUN rails g controller home show
RUN rails g controller dashboard show
RUN rails g controller auth0
RUN heroku local -f Procfile.dev
RUN heroku create your_app_name
RUN bundle lock --add-platform x86_64-linux