Go to file
schisma eca207dfcf the REPRISE 2015-04-19 23:46:28 +02:00
app Merge branch 'master' of github.com:Retrospring/retrospring 2015-04-19 00:43:04 +02:00
bin added Capistrano 2014-12-21 22:12:59 +01:00
config added Rack initializer 2015-04-19 01:24:50 +02:00
db forgot to add migration and everything 2015-01-25 20:30:53 +01:00
docs added nginx configuration, ASS runscript 2015-04-02 01:12:01 +02:00
lib added jquery.guillotine 2014-12-29 15:47:10 +01:00
log first commit 2014-08-01 11:23:47 +02:00
public the REPRISE 2015-04-19 23:46:28 +02:00
spec update test 2015-01-31 16:26:22 +01:00
tmp added a few directories in ./tmp 2014-12-13 16:42:00 +01:00
vendor/assets first commit 2014-08-01 11:23:47 +02:00
.gitignore Revert "Le Funny Emoji Meme Face x--DD" 2015-01-08 22:34:50 +01:00
.rspec removed a (rrer)rspec option 2014-12-05 06:39:33 +01:00
Gemfile update gems 2015-04-18 21:50:08 +02:00
Gemfile.lock update gems 2015-04-18 21:50:08 +02:00
LICENSE added license (AGPLv3) 2015-04-02 01:39:46 +02:00
Procfile updated procfile 2014-12-13 16:44:33 +01:00
README.md more things 2015-04-19 15:14:52 +02:00
Rakefile update Rakefile 2015-03-27 18:06:30 +01:00
TODO Update TODO 2015-04-02 02:07:17 +02:00
config.ru first commit 2014-08-01 11:23:47 +02:00

README.md

justask (aka. the software behind Retrospring)

This is the source code that powers Retrospring. Yep, all of it. Including all the branches where we left off.

Requirements

  • UNIX-like system (Linux, FreeBSD, ...)
  • Ruby 2.0.0+
  • Bundler
  • PostgreSQL
  • Redis (for Sidekiq)
  • ImageMagick (for image processing)

Installation (production)

We've installed justask on FreeBSD 10 using rvm. What we also did was creating a new, seperate user just for justask to run in. On FreeBSD, this is done with:

# pw user add justask

Database

At Retrospring, we were using PostgreSQL as the database backend. The software might work on MySQL too, but that was not tested.

Installation from Ports (using portmaster):

# portmaster databases/postgresql93-server

PostgreSQL

$ sudo -u postgres psql -d template1
template1=# CREATE USER justask CREATEDB;
template1=# CREATE DATABASE justask_production OWNER justask;
template1=# \q

Try connecting to the database:

$ psql -U justask -d justask_production

nginx

See docs/nginx.conf for the configuration we use on Retrospring.

justask

Clone the Source

$ git clone https://github.com/nilsding/justask.git justask

Configure It

# Change into the justask directory
$ cd justask

# Copy the example config
$ cp config/justask.yml.example config/justask.yml

# Edit the configuration file
$ vi config/justask.yml

Database Configuration

$ cp config/database.yml.postgres config/database.yml
$ vi config/database.yml

# Make database.yml readable only for you
chmod o-rwx config/database.yml

Install Gems

# Deployment:
$ bundle install --deployment --without development test mysql

# Development:
$ bundle install --without production mysql

Initialize Database

$ bundle exec rake db:migrate RAILS_ENV=production

Compile Assets

$ bundle exec rake assets:precompile RAILS_ENV=production

Run the server

# Production mode:
$ foreman start

# Development mode:
$ bundle exec rails server

Now, create an account on your justask installation.

To make yourself an admin, just execute:

$ bundle exec rake 'justask:admin[your_username]' RAILS_ENV=production

If you want to remove admin status from a certain user, you can do this:

$ bundle exec rake 'justask:deadmin[get_rekt]' RAILS_ENV=production

Add/remove moderators (this can also be done via the web interface by visiting an user as an admin):

$ bundle exec rake 'justask:mod[someone_else]' RAILS_ENV=production
$ bundle exec rake 'justask:demod[someone_else]' RAILS_ENV=production

Add/remove supporters (this can also be done via the web interface by visiting an user as an admin/mod):

$ bundle exec rake 'justask:sup[someone_else]' RAILS_ENV=production
$ bundle exec rake 'justask:desup[someone_else]' RAILS_ENV=production

Export user data:

$ bundle exec rake 'justask:export[jdoe@example.tld]' RAILS_ENV=production

Find the user(s) with the most self-asked anonymous questions:

$ bundle exec rake justask:loners

The Official Retrospring Closedown Soundtrack™ (now redundant)

License

AGPLv3.