ozgun / sopar

A simple and personal blog and CMS application in Ruby on Rails

This URL has Read+Write access

sopar / README
100644 86 lines (51 sloc) 1.759 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
== Welcome to Sopar
 
Sopar is a simple and personal blog and CMS application in Ruby in Rails.
 
== Demo
 
  http://stark-water-38.heroku.com
 
== Requirements
 
1. RedCloth
2. Rmagick
 
== Installation
 
1. Getting code:
 
$ git clone git://github.com/ozgun/sopar.git
$ cd sopar
 
2. Copy database.example.yml to database.yml
 
$ cp config/database.example.yml config/database.yml
 
3. Create databases:
 
$ mysqladmin -u root -p create sopar_development
$ mysqladmin -u root -p create sopar_test
$ mysqladmin -u root -p create sopar_production
 
4. Running Migrations:
 
For development Mode:
 
$ rake db:migrate
 
For production mode:
 
$ rake db:migrate RAILS_ENV=production
 
5. Change secret key found in config/environment.rb file:
 
config.action_controller.session = {
     :session_key => '_sopar_session',
     :secret => 'YourSecretKey'
   }
 
6. You may want to uncomment the following line in config/environment.rb file.
 
# ENV['RAILS_ENV'] ||= 'production'
 
 
== Getting Started
 
Admin Panel: http://localhost:3000/login
Username: admin
Password: admin
 
== Plugins Used
 
1. acts_as_list: Listing
2. acts_as_taggable_on_steroids: Tagging
3. attachment_fu: File Uploads
4. textile_editor_helper: Simple textile editor
5. will_paginate: Pagination
6. recaptcha: Get your keys from http://recaptcha.net/
 
== Feedback & Contact
 
If you find a bug please open a ticket at "Lighthouse".
http://sopar.lighthouseapp.com/
 
If you want help me to make this app better, don't hesitate to fork this project at GitHub.
http://github.com/ozgun/sopar/tree/master
 
You can contact me via my website or my email address.
http://kozgun.net
oz@kozgun.net
 
Thanks for your interest.
 
== License
 
See MIT-LICENCE