Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliendargelos/count
Count is a personal Rails application for managing freelance projects.
https://github.com/juliendargelos/count
Last synced: 4 days ago
JSON representation
Count is a personal Rails application for managing freelance projects.
- Host: GitHub
- URL: https://github.com/juliendargelos/count
- Owner: juliendargelos
- License: mit
- Created: 2018-10-28T12:48:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T09:33:15.000Z (almost 2 years ago)
- Last Synced: 2024-11-11T05:40:08.515Z (2 months ago)
- Language: Ruby
- Size: 279 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Decoration](https://user-images.githubusercontent.com/3743321/40796764-6dcdf06a-6506-11e8-9fc2-c555ed907192.png)
C O U N T
Count is a personal Rails application for managing freelance projects.## Install
### Clone the repository
```shell
git clone [email protected]:juliendargelos/count.git
cd count
```### Check your Ruby version
```shell
ruby -v
```The ouput should start with something like `ruby 2.5.1`
If not, install the right ruby version using [rbenv](https://github.com/rbenv/rbenv) (it could take a while):
```shell
rbenv install 2.5.1
```### Install dependencies
Using [Bundler](https://github.com/bundler/bundler) and [yarn](https://github.com/yarnpkg/yarn):
```shell
bundle && yarn
```### Initialize the database
```shell
rails db:create db:migrate
```### Add heroku remote
Using [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli):
```shell
# Replace by your own remote
heroku git:remote -a count-juliendargelos
```## Serve
```shell
rails s
```## Deploy
Push to Heroku production remote:
```shell
git push heroku
```