Ifiht / d20Fireball

Simple Pathfinder webapp for fun with friends ❤️‍🔥

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

d20 Fireball ❤️‍🔥

Pathfinder online rails app for fun with friends.

To-Do List:

  1. Configure the mailer to create full URLs in emails:
    config/environments/{development,test}.rb
    config.action_mailer.default_url_options = { host: 'localhost:3000' }
    In the production environment it should be your application's full hostname.
  2. Display user session status.
    From somewhere in your layout, render sign in and sign out buttons:
      Signed in as: <%= current_user.email %>
      <%= button_to 'Sign out', sign_out_path, method: :delete %>
    <% else %>
      <%= link_to 'Sign in', sign_in_path %>
    <% end %>```
    
  3. Render the flash contents.
    Make sure the flash is being rendered in your views using something like:
      <% flash.each do |key, value| %>
        <div class="flash <%= key %>"><%= value %></div>
      <% end %>
    </div>```
    

About

Simple Pathfinder webapp for fun with friends ❤️‍🔥

License:GNU General Public License v3.0


Languages

Language:Ruby 72.5%Language:HTML 16.0%Language:Dockerfile 5.3%Language:JavaScript 3.6%Language:CSS 2.0%Language:Shell 0.5%