/count

Count is a personal Rails application for managing freelance projects.

Primary LanguageRubyMIT LicenseMIT

Decoration

C    O    U    N    T

Count is a personal Rails application for managing freelance projects.

Maintainability

Deploy

Install

Clone the repository

git clone git@github.com:juliendargelos/count.git
cd count

Check your Ruby version

ruby -v

The ouput should start with something like ruby 2.5.1

If not, install the right ruby version using rbenv (it could take a while):

rbenv install 2.5.1

Install dependencies

Using Bundler and yarn:

bundle && yarn

Initialize the database

rails db:create db:migrate

Add heroku remote

Using Heroku CLI:

# Replace by your own remote
heroku git:remote -a count-juliendargelos

Serve

rails s

Deploy

Push to Heroku production remote:

git push heroku