Skip to content
This repository was archived by the owner on Dec 18, 2025. It is now read-only.

Development

DominikFischli edited this page Nov 24, 2017 · 33 revisions

Setup Development Environment

Install the database and dependencies using this command (Ubuntu):

sudo apt-get install sqlite3 mysql-client libmysqlclient-dev libqtwebkit-dev

Install RVM (Ruby Version Manager):

see rvm.io.

Install Ruby and the Ruby-Bundler:

rvm install 2.2.6

gem install bundler

Cryptopus

Go to your target Directory and clone the repository:

git clone git://github.com/puzzle/cryptopus.git

Build Cryptopus with the bundler:

cd cryptopus

bundle install Create and initialize the database:

rake db:create

rake db:setup

rake geo:fetch

Start the Rails server:

rails s

Browse to https://localhost:3000 and login with default credentials:

user = "root" and password = "password"

Clone this wiki locally