codereading / active_admin

The administration framework for Ruby on Rails applications.
activeadmin.info
Other
0 stars 0 forks source link

Using active_admin in my current app #8

Open agis opened 11 years ago

agis commented 11 years ago

Hey guys. I'm currently developing a blog-like app which can be found here: https://github.com/Agis-/bathliving and live here: http://bathliving.herokuapp.com

I'm using active_admin and you can see how I implemented it live here: http://bathliving.herokuapp.com/admin (user: admin@example.com, password: password).

If you have any questions, comments, suggestions go ahead, let me know!

adamakhtar commented 11 years ago

Nice work! Did you design as well?

It's great that active admin handles non enlish characters nicely out of the box without any character encoding issues ( im assuming there were none )

On Sat, Sep 8, 2012 at 12:58 AM, Agis Anastasopoulos < notifications@github.com> wrote:

Hey guys. I'm currently developing a blog-like app which can be found here: https://github.com/Agis-/bathliving and live here: http://bathliving.herokuapp.com

I'm using active_admin and you can see how I implemented it live here: http://bathliving.herokuapp.com/admin (user: admin@example.com, password: password).

If you have any questions, comments, suggestions go ahead, let me know!

— Reply to this email directly or view it on GitHubhttps://github.com/codereading/active_admin/issues/8.

agis commented 11 years ago

Thank you. No I didn't design this one, it's a paid theme.

Yes that's great about activeadmin.. and the DSL it provides for customizing the views is very nice (formtastic is great).

The things to notice about my activeadmin implementation is that:

adamakhtar commented 11 years ago

ahh i never did try to create a new resource so didnt get to see the editors.

Actually i tried deploying active_admin to heroku as well and it was a pain to figure out. ActiveAdmin has a wiki regarding it and I followed all the steps and got it working. They did forget to explicity include one of activeadmins stylesheets in the assets precompile hook but apart from that it worked.

I love heroku but sometimes issues like these sometimes want to push me back to rolling rails on my own server.

agis commented 11 years ago

It doesn't have any editors, it's just a plain text field.

Yes activeadmin requires some configuration to work with the Cedar stack. You have to add some of its assets to the precompilation list in application.rb (not production.rb because Heroku doesn't look at it at all). $ heroku logs -t helps a lot to debug these situations since it tells you exactly which files aren't precompiles.