Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiskolabs/splendidbacon
Project Management for hackers
https://github.com/kiskolabs/splendidbacon
unmaintained
Last synced: 3 months ago
JSON representation
Project Management for hackers
- Host: GitHub
- URL: https://github.com/kiskolabs/splendidbacon
- Owner: kiskolabs
- License: mit
- Archived: true
- Created: 2010-10-22T13:32:00.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2017-03-06T13:08:16.000Z (over 7 years ago)
- Last Synced: 2024-07-21T00:38:22.027Z (4 months ago)
- Topics: unmaintained
- Language: Ruby
- Homepage: http://splendidbacon.com
- Size: 1.46 MB
- Stars: 99
- Watchers: 35
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Splendid Bacon
Project Management* for hackers
*
*## Caveats
There are a few issues that should be fixed before taking this into production use:
* Fix the [mass assignment vulnerabilities](http://guides.rubyonrails.org/security.html#mass-assignment) (this is the most important thing)
* `config.active_record.mass_assignment_sanitizer = :strict`
* `config.active_record.whitelist_attributes = true`*Note: Any API keys included in the source code have been revoked and cannot be used.*
## Installation (for development)
1. Clone the repository
`git clone [email protected]:kiskolabs/splendidbacon.git`
2. Check that you have the right ruby version (> 1.9.2)
3. Install the required gems
`bundle install`
in development you might want to also pass `--without production`
4. Create database.yml in the config folder. You can `cp config/database.example.yml config/database.yml` to get a starting point.
5. Create the `.env` file. You can `cp sample.env .env` to get a starting point.
6. Setup the database (create DB, load schema, load seed data)
`rake db:setup`
7. Start the app
`foreman start`
The admin console is located at
**NB. The session secret must be set as an environment variable called `SECRET_TOKEN`.**
You can generate a new secret with `rake secret`.
On Heroku, you can set the session secret with this one-liner:
heroku config:add SECRET_TOKEN=\`rake secret`
[Foreman](http://ddollar.github.com/foreman/) is included to make managing environment variables easier in development. Include any environment variables you need in a `.env` file (see `sample.env` as a reference).
## Tests [![Build Status](https://secure.travis-ci.org/kiskolabs/splendidbacon.png?branch=master)](http://travis-ci.org/kiskolabs/splendidbacon)
Run the test suite with:
bundle exec rake spec
Or:
bundle exec rspec spec
## License and Copyright
Copyright © 2010-2012 Kisko Labs & contributors.
Licensed under the MIT license. See the LICENSE file for the full license text.