https://github.com/dymio/vitrage-demo
Demo of Vitrage
https://github.com/dymio/vitrage-demo
Last synced: 3 months ago
JSON representation
Demo of Vitrage
- Host: GitHub
- URL: https://github.com/dymio/vitrage-demo
- Owner: dymio
- Created: 2017-06-20T08:31:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-24T17:22:15.000Z (almost 8 years ago)
- Last Synced: 2025-01-10T02:59:35.052Z (5 months ago)
- Language: Ruby
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Vitrage Demo
============This is Ruby on Rails application made for trying
[Vitrage](https://github.com/dymio/vitrage) — web-page content management system
for Rails, based on separated content pieces.Project works at [vitrage-demo.codenohito.ru](http://vitrage-demo.codenohito.ru/)
Getting Started
---------------Make sure you have Ruby version installed, specified in the `.ruby-version`
file in the root directory of the application.If you use [RVM](https://rvm.io/) add a '.ruby-gemset'
[file](https://rvm.io/workflow/projects#project-file-ruby-version)
to the root directory of the application.You will need [ImageMagick](https://www.imagemagick.org/) installed.
The application uses PostgreSQL. Versions 8.2 and up are supported.
Create database and config file `config/database.yml` for connection.
File example:development:
adapter: postgresql
database: database_name
pool: 5There is `config/database_example.yml` file for full example.
When done, run:
$ bin/bundle install --without production
$ bin/rake db:create db:migrateInstall demo data using command: `bin/rake db:seed` if you need.
Application ready for start. You can launch webserver with
command `bin/rails server` and see home page
at [localhost:3000](http://localhost:3000/) url.