[show] xpost from /rails/. First ever rails app live on heroku. Pleas give me suggestions on what I can improve on

Made this when AdviceAnimals banned the bear and the puffin. Here is Just My Opinion, where anyone can post whatever they want.

Read somewhere that I need to make ten shitty rails app before I can even begin to grasp the foundation of rails, so here is my first ever application live on the web.

[Here is the site](http://mighty-earth-1350.herokuapp.com/)

[Here is my github](https://github.com/jackCHH/jmo)

Current I am planning on

*Add some javascript to animate the website a bit

*Add a admin role using devise gem

*Add a comment system

*the background image takes too long to load, need to find a way to fix that (but is it a heroku issue..?)

please please tell me what I can improve on, or what additional features you would like to see on JMO

3 thoughts on “[show] xpost from /rails/. First ever rails app live on heroku. Pleas give me suggestions on what I can improve on”

  1. Pretty cool! Right away you should get that about page updated! The Chung link just shows the default view code. Awesome project! Keep it up!

    Reply
  2. Just a small thing, but it will make your site look more professional!

    You have a “log in” page but your URL still points to “sign in”. You can fix that easily by putting the following in your routes file:

    devise_for :users, path_names => { sign_in => login }

    That problem continues across other things in your app as well, your error message when trying to view content without signing in and your sign in button on the sign up page.

    Your error message can be found and edited in your devise.en.yml file.

    Alternatively you could just change it back to sign in 😉

    Reply

Leave a Comment