Kuvakehys is the application that runs tasveer.de. It allows you to collect photos in a group and once a certain amount of pictures is collected they are automatically printed and shipped to a configured recipient.
- Postgres >= 9.1 (SQLite3 works fine for development. adjust the Gemfile if you need it)
- Ruby >= 2.6
- all ruby dependencies are described in the Gemfile (please refere to the changelog of this file to check for updates)
-
Install the bundle
bundle install
-
Setup your database
cp config/database.yml.example
config/database.yml
edit your database configuration
vim config/database.yml
create, migrate and seed the database
rake db:setup
-
Setup application config using dotenv
cp env.example .env
edit the needed variables
vim .env
-
Run the server / done
rails server
open [http://localhost:3000](http://localhost:3000)