Core
The core API server & authentication system.
Development Setup
Just run:
$ ./bin/setup
You may want to change the app's default environment variables, which lays in .env
.
Deploy
This application is designed under The Twelve-Factor App pattern, making its deployment and operations on cloud platforms easy.
It's also aimed to be Heroku deployable:
Management
Visit http(s)://url_of_your_app/admin
to access the control panel. The default account and password is admin
/ password
. Please change it immediately after your first login by clicking your administration account name ("admin") located at the top-right corner.
You can also type $ bin/rails c
Enter in the terminal to enter the rails console.
Feel free to check out the docs for further information.
Testing
Run the following command to execute all test suites:
$ bundle exec rake
Chat
Contributing
- Fork it.
- Create your feature branch (
git checkout -b my-new-feature
). - Commit your changes (
git commit -m 'add some feature'
). - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request.