It's an art website! Not currently under development, sadly.
We welcome code contributions. We also welcome issues. Feel free to make a feature request, a bug report, or anything else.
This is a bog-standard rails environment. Essentially, you need to install:
- Ruby 2.5.3 (RVM is one way to do this)
- PotsgreSQL
- Bundler
- Node.js
- Yarn
That's it!
Your database needs to allow local connections. From there, run the following commands
bundle
yarn
rails db:setup
rails s
You now have a working development environment.
This repo uses continuous deployment.
The master
branch lives on production at all times.
As a result, all development must be done on the development
branch!
Branches will not be merged to master until they are in some way "complete." Ideally, this includes extensive tests of any new functionality. Keep this in mind when contributing.