diff --git a/.gitignore b/.gitignore index fb5b4c4..62fcf5d 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,5 @@ # .gitignore node_modules/ .vercel +.env + diff --git a/render.yml b/render.yml new file mode 100644 index 0000000..625ef84 --- /dev/null +++ b/render.yml @@ -0,0 +1,11 @@ +services: + - type: web + name: dream-rent-api + env: ruby + buildCommand: | + curl -sSL https://get.rvm.io | bash -s stable --ruby + source /usr/local/rvm/scripts/rvm + rvm install 3.3.3 + gem install bundler + bundle install + startCommand: bundle exec puma -C config/puma.rb