Skip to content

timharding/slices

 
 

Repository files navigation

Slices CMS

In-house CMS of With Associates

Starting a new Slices project

Slices requires Ruby, MongoDB and ImageMagick. If you don't have them installed, follow this guide before beginning.

We'll need to checkout the Slices project, install the relevant gems using Bundler and use a Rails template to create the new project:

$ cd ~/Projects     # or wherever you store git repositories
$ git clone git@github.com:withassociates/slices.git
$ cd slices
$ gem install bundler
$ bundle install

Or if you have Slices already installed:

$ cd ~/Projects/slices  # or wherever you store git repositories
$ git pull
$ bundle install

Now we're ready to create the Slices project:

$ cd ~/Projects
$ gem install rails -v '~> 3.2.0'
$ rails new mywebsite -JOT -m ~/Projects/slices/lib/generators/templates/slices.rb

At the end of this process we should have a new Slices project with a git repository created, gems installed, database seeded and ready to run:

$ cd ~/Projects/mywebsite
$ foreman start

Visit http://localhost:5000/admin to begin using Slices.

The next step is to create some slices - there are more guides in the Wiki.

## Code Status

Travis CI   Code Climate Gemnasium

License

Slices is released under the MIT license. Copyright (c) 2014 With Associates.

About

Slices CMS from With Associates

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 71.7%
  • JavaScript 27.8%
  • CSS 0.5%