/infish

Infish

Primary LanguageRuby

About

This web application is an app aimed at university students preparing for multiple-choice examinations.

Application is created and maintained by Scientific Circle in Wrocław University of Technology: Koło Naukowe Tworzenia Aplikacji Webowych and supported by Monterail.

Technology

  • Ruby on Rails 4.x
  • AngularJS 1.x
  • PostgreSQL

Development setup

# Fork and clone the repository
$ cd infish

# Create .env file in root directory with those required settings.
# You can use my "test" Facebook APP or create your own in:
# https://developers.facebook.com/apps/
FACEBOOK_APP_ID=1252267081467224
FACEBOOK_APP_SECRET=76714c3ab8e1c039299bc23a5c46b55d

$ bundle install
$ bundle exec rake db:create db:migrate db:seed
$ bundle exec rails server

# Log in with Facebook
# Optionally, you can assign yourself to Exam created in seed
$ bundle exec rails console
> User.order(created_at: :asc).last.user_exams.create!(exam: Exam.first)

Contributing

If you've never contributed to OpenSource project on GitHub, read this guide.

In short - there should be some open issues that you might want to work on, or you can create your own issue.

When an issue description is not clear enough to start working on it or you have other questions - please comment on the issue and ping issue author if possible.

Fork a project, work on it and, when done, open pull request and ping @hodak - somebody will do a code review and feature validation and, finally, merge changes to master branch.

If you have any questions don't hesitate to ask!

Development tips