An open API service indexing awesome lists of open source software.

https://github.com/maxivak/rails-base-app

Rails base application. Based on OptimaCMS
https://github.com/maxivak/rails-base-app

cms optimacms rails

Last synced: 3 months ago
JSON representation

Rails base application. Based on OptimaCMS

Awesome Lists containing this project

README

          

# Rails base app

View demo online: http://demo.optimacms.com

* based on [OptimaCMS](https://github.com/maxivak/optimacms)

## Quick start

* Clone the git repo
```ruby
git clone https://github.com/maxivak/rails-base-app
```
or [download it](https://github.com/maxivak/rails-base-app/archive/master.zip)

* Change config/secrets.yml with your database settings
* Create MySQL database
* Import mysql dump from '__db' folder into database

* Run `bundle install`
* Run `rake db:migrate`

* Run `yarn install`
* Precompile assets
```
RAILS_ENV=development rake assets:precompile
```

* run web server

* Access site `http://localhost:3000`

* Access admin area:
```
http://localhost:3000/admin
```
with credentials:
```
admin@example.com
password
```

* Change admin password

## Requirements

* Rails 5
* Ruby 2.4
* Mysql database
* Redis server
* Imagemagick (For uploading pictures)

## Setup

[Read Wiki](https://github.com/maxivak/rails-base-app/wiki/installation)

## Documentation
[Wiki](https://github.com/maxivak/rails-base-app/wiki)