A personal project (work in progress) that splits housing costs between flatmates. I built this over a weekend to experiment with Tailwind CSS, link sharing and social logins (OmniAuth)
url: https://flat-splitter.herokuapp.com/
Flat Splitter uses:
- Ruby on Rails
- Javascript
- Tailwind CSS
- Devise for authentication
- OmniAuth for social logins
This app needs Ruby version 2.6.6 on your computer. If you need help with installing Ruby using rbenv
, you can follow this guide.
# clone the repo
git clone [email protected]:arievdp/flat-cost-calculator.git
# install dependencies
cd flat-cost-calculator
bundle install
yarn install --check-files
# run app for first time
rails db:migrate db:create
# populate sample data
rails db:seed
# starting the server
rails server
# alternatively, can use this shortcut
rails s