Old codebase for linkpearl.net
  • Ruby 74.4%
  • HTML 21.7%
  • Puppet 1.3%
  • SCSS 1.2%
  • JavaScript 1.1%
  • Other 0.3%
Find a file
2015-05-15 03:25:14 -07:00
app Polls and Poll Items 2015-05-15 03:25:14 -07:00
bin New Relic reporting 2015-04-16 04:03:03 -07:00
config Polls and Poll Items 2015-05-15 03:25:14 -07:00
db Polls and Poll Items 2015-05-15 03:25:14 -07:00
lib No need for these .keep files 2015-05-01 10:45:16 -07:00
log Initial commit 2015-03-26 12:15:32 +01:00
provisioning ElasticSearch 2015-04-23 13:47:23 +02:00
public OH 2015-04-09 10:24:19 -07:00
test Polls and Poll Items 2015-05-15 03:25:14 -07:00
vendor/assets New swagger-ui gem 2015-04-08 02:50:06 -07:00
.gitignore OH 2015-04-09 10:24:19 -07:00
.ruby-version Oh hey, it works 2015-03-30 01:52:34 +02:00
Capfile Whenever for crontab management 2015-04-12 04:54:19 -07:00
config.ru Initial commit 2015-03-26 12:15:32 +01:00
export_service.sh . 2015-05-02 16:35:01 -07:00
Gemfile Polls and Poll Items 2015-05-15 03:25:14 -07:00
Gemfile.lock Polls and Poll Items 2015-05-15 03:25:14 -07:00
linkpearl.sublime-project Initial commit 2015-03-26 12:15:32 +01:00
Procfile Switching back to Thin for now 2015-05-02 16:23:31 -07:00
Rakefile import task 2015-04-09 09:56:58 -07:00
README.md Run the dev server with Foreman too 2015-04-11 13:54:51 +02:00
Vagrantfile Run the dev server with Foreman too 2015-04-11 13:54:51 +02:00

Linkpearl

Description should probably go here, bla bla, I'm tired.

Requirements

Installation

Create the virtual machine:

vagrant up
# this can take a while...
vagrant ssh
cd /vagrant

Set up the application:

bundle install
rake db:migrate

Run a development server, complete with a task queue, etc:

bundle exec foreman start

Access it at http://localhost:5000, and register an account.
Then promote yourself to admin:

rake 'promote[youremail@example.com]'

Upgrading

vagrant provision
vagrant ssh

cd /vagrant
bundle install
rake db:migrate