Budget CI
A minimal budgeting application.
See the contributing guidelines.
Install the dependencies and set up the database.
bin/setup
To run the application processes.
bin/dev
If you're making changes, be sure to write and run the tests.
bin/rails spec
Before pushing changes, check all the code.
bin/ci
Build the image with Docker.
docker build -t budget .
Run the server using the image.
docker run --rm -p 3000:80 -e SECRET_KEY_BASE=$(bin/rails secret) --name budget budget
Budget uses the MIT license. See LICENSE for more details.