Reputation: 1001
I started to get comfortable with Rails and programming in general. I'm working on a Rails app with basic authorization and authentication. I wish to have a CMS for the landing page, while the core functionality of the website would be in Rails. I've seen that it's very useful to separate the marketing assets from the core app for iterating on the messaging and other content.
My plan is for the landing page to have 3 fields for the signup- Username
, email
and password
, for new users to fill in, which should then be stored in the database and used by the Rails app behind the landing page. I'm thinking of using Wordpress to do so, simply because that's the only CMS I'm comfortable with.
I was wondering how I should go about this? Is this recommended, and if so, would the necessary way to go about it be a Wordpress plugin? (I couldn't narrow it down to a good Rails plugin, so any suggestions would be greatly appreciated) . Are there any alternatives to plugins? Thanks in advance!
Upvotes: 0
Views: 297
Reputation: 91
You could use Refinery CMS with or without the Rest API:
Upvotes: 1
Reputation: 11000
Why not using devise gem? Everyone uses that. Its well tested and has tons of useful features. And if its a small app, your own created authentication system might be enough.
And for CMS I would like Wordpress for SEO purposes, and Rails Frog for ease of use
Upvotes: 1