This repository contains a self-hosted recipe web application implemented in Ruby On Rails.
Runtime docker images are available.
rake db:create
rake db:migrate
Restore dump
pg_restore -d reeper_development -h db -Upostgres file.dump
Create .env.local
file with AWS credentials
# .env.local
AWS_ACCESS_KEY_ID=AAAAAAA
AWS_SECRET_ACCESS_KEY=BBBBB
Start webpack-dev-server, css build, rails
bin/dev
Use provided docker-compose.prod.yml
file for startup of postgres db and container for the rails app. Don't forget to set AWS_ACCESS_KEY_ID
, AWS_SECRET_ACCESS_KEY
and db passwords. To change name of S3 bucket (reeper) and region (eu-central-1) use S3_BUCKET_NAME
and S3_BUCKET_REGION
environment variables.