https://github.com/squallstar/paperboard
Basecamp-like project management tool built with Ruby on Rails
https://github.com/squallstar/paperboard
Last synced: 2 months ago
JSON representation
Basecamp-like project management tool built with Ruby on Rails
- Host: GitHub
- URL: https://github.com/squallstar/paperboard
- Owner: squallstar
- Created: 2014-01-11T00:08:36.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-14T22:09:18.000Z (about 12 years ago)
- Last Synced: 2025-01-26T13:13:02.315Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 2.82 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Paperboard
## Architecture
Paperboard runs **ruby 2.1.0** with **rails 4**.
### Database
On development, it will use **sqlite**.
On Heroku production **Postgre** will be used, while on Squallstar production **MySQL** server will be used.
## Configuration
Copy ``.env.example`` to ``.env`` and replace with real environment variables.
$ bundle install
Then, setup the DB:
$ rake db:schema:load && rake db:seed
## Subscriptions
To load the plans from **Paymill**, run this task:
$ bundle exec rake paymill:import_plans
Note: plans are automatically imported when you run ``db:seed``.
## Tests
To run the tests:
$ rake test
## Annotating models
$ annotate --exclude tests,fixtures,factories
## Deployment
### 1. Heroku staging
$ git remote add heroku git@heroku.com:paperboard.git
$ git push heroku master
### 2. Squallstar staging
$ cap deploy staging