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
- Host: GitHub
- URL: https://github.com/maxivak/rails-base-app
- Owner: maxivak
- Created: 2015-06-21T22:44:10.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-12-18T17:37:29.000Z (over 7 years ago)
- Last Synced: 2025-01-28T05:43:07.048Z (over 1 year ago)
- Topics: cms, optimacms, rails
- Language: Ruby
- Homepage:
- Size: 5.22 MB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
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)