Askalot is a CQA (Community Question and Answer) system of next generation.
- Ruby 2.6
- Rails 4.2
- PostgreSQL 12.4
- Elasticsearch 6.8
Clone and install.
git clone [email protected]:teamnaruby/askalot.git
cd askalot
bundle install
Copy and edit configuration files.
cp config/configuration.{yml.example,yml}
cp config/database.{yml.example,yml}
cp config/newrelic.{yml.example,yml}
There are two types of environments: university and mooc which are currently implemented as fiit and edx environments. You have to use this as suffix to standart development, test, staging, demo and production environment.
Create database, load schema and seed the database.
RAILS_ENV=fiit_development rake db:create db:structure:load DB_STRUCTURE=components/university/db/structure.sql db:seed
RAILS_ENV=edx_development rake db:create db:structure:load DB_STRUCTURE=components/mooc/db/structure.sql db:seed
Run specs with:
RAILS_ENV=fiit_test rake db:create db:structure:load DB_STRUCTURE=components/university/db/structure.sql
RAILS_ENV=fiit_test bundle exec rake rspec:test
or
RAILS_ENV=edx_test rake db:create db:structure:load DB_STRUCTURE=components/mooc/db/structure.sql
RAILS_ENV=edx_test bundle exec rake rspec:test
Tests will run either shared+university or shared+mooc tests.
The mapping of environments to the engines is in the config/environment.yml
.
- Fork it.
- Create your feature branch (
git checkout -b new-feature
). - Commit your changes (
git commit -am 'Add some feature'
). - Push to the branch (
git push origin new-feature
). - Create new Pull Request.
This software is released under the MIT License.