| View previous topic :: View next topic |
| Author |
Message |
pala.srinivasrao
Joined: 02 Jan 2008 Posts: 1 Location: India
|
Posted: Mon Mar 10, 2008 1:22 pm Post subject: Ragarding the radiant CMS |
|
|
Hi All,
Could please explain about how can I create the rails application by using Radiant CMS? How can I use the radius tags in my application? Can you give the sample code ?
Please help in the task.
Thanks to all
srinivas rao.pala |
|
| Back to top |
|
 |
umamahesh_nyros

Joined: 17 Jul 2007 Posts: 224 Location: KAKINADA
|
Posted: Mon Mar 17, 2008 10:36 am Post subject: Radiant CMS and Radius tags in Ruby on Rails |
|
|
Hai Srinivas !!
Below are the few Important points retaled to Radiant CMS.
1). Radiant is a "no-fluff", open source content management system designed for small teams.
2). In Radiant things are simple, so Radiant is easy to learn and support.
Creating Rails application using the Radiant CMS concept.
1). run the below command in your command prompt.
> radiant myapp #myapp is application name
Note: when working with the Radiant don't use rails command, just radiant command will do it all for you.
2). run the below command to migrate all the required fields in your database.
> rake production db:bootstrap
Here it will ask for clean up old database and to recreate new database, enter "Y" to create new database
Note: The db:bootstrap task is code that is specific to the Mephisto code base not rails. It will fill all the static data into database required for the application.
5). Specify default admin login details.
username: *******
pass: ********
These details are used for login to the admin section.
4). restart the server to run the application as an normal rails application
> ruby script/server -e production
5). open your browser type the URL: http://localhost:3000/admin/
enter your admin login details in order to use the all the functionalities of Radiant CMS |
|
| Back to top |
|
 |
umamahesh_nyros

Joined: 17 Jul 2007 Posts: 224 Location: KAKINADA
|
Posted: Wed Jan 07, 2009 3:03 am Post subject: Radiant CMS |
|
|
the most important thing you should do first is,
you need to install radiant gem.
run the below command to install radiant gem
> gem install radiant |
|
| Back to top |
|
 |
|