This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Installation
Starting the installation of Gluttonberg this afternoon on my system, these notes can help others.
I suppose we’ve already got all the merb-sack installed, then you’ll still need to install a missing gem:
sudo gem install dm-is-list
Then, you’ll need to create the database:
cd gluttonberg mkdir db touch db/development.db
You can now launch this slice as a standalone:
slice
Connect to the app via your browser: http://localhost:4000
You now need to bootstrap the database. Unfortunately we don’t have a rake task to do this yet, so we need to do it manually — bleh. The gluttonberg/README has some instructions.
To migrate the db and add an admin user, you need to go into an interactive session and run a few commands.
$ slice -i
>> DataMapper.auto_migrate!
>> Gluttonberg::User.create({:name => 'admin', :email => 'admin@localhost.localdomain',
:password => 'password', :password_confirmation => 'password'})
then you can hit http://localhost:4000/admin






