OpenSit is an open source meditation community - a place where meditators can share and develop their practice. It lives at OpenSit.com
#Getting Started
To install locally for your own hacking pleasure:
- Clone the repo and
cd
into it. bundle install
cp config/database.yml.example config/database.yml
bundle exec rake db:create db:migrate
bundle exec guard
- Go to
localhost:3000
. Voila! - To run the tests:
rake db:test:prepare
and thenrspec spec
#Contributing
Here's how we work. Before getting busy, please search to see if the issue/feature you're addressing is already being discussed or worked on. If it isn't, you should consider creating an issue so that we can give you some feedback. When you're ready to get coding:
- Create a feature branch:
git checkout -b your-feature-or-fix
- Commit early and often (you can clear it up later if you want to)
- When you're done, push your feature branch:
git push origin your-fix-or-feature
- Open a pull request. If you want push a work in progress, that's fine, but mark it as so e.g. "[WIP] New comments system"
- Another developer will then review your changes, and give them the thumbs up or offer some comments.
- Once reviewed and ok'ed, your changes will be merged into master. Rejoice!
- Remember to add tests!
If you find a security issue please don't create a public issue - email hello@opensit.com with details so that we can do our best to minimise any problems.
#Roadmap
What do we have planned next for OpenSit? Check out the Roadmap.
#License
All the code behind OpenSit is made available for free under the GNU Affero General Public License V3. See LICENSE and COPYRIGHT for more details.