initial commit

This commit is contained in:
Nelson Jovel 2023-12-22 19:20:08 -08:00
commit c21c4fa184
68 changed files with 1092 additions and 0 deletions

View file

@ -0,0 +1 @@
//= link_directory ../stylesheets/dashboard .css

View file

View file

@ -0,0 +1,15 @@
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*
*= require_tree .
*= require_self
*/

View file

View file

@ -0,0 +1,4 @@
module Dashboard
class ApplicationController < ActionController::Base
end
end

View file

@ -0,0 +1,4 @@
module Dashboard
module ApplicationHelper
end
end

View file

@ -0,0 +1,4 @@
module Dashboard
class ApplicationJob < ActiveJob::Base
end
end

View file

@ -0,0 +1,6 @@
module Dashboard
class ApplicationMailer < ActionMailer::Base
default from: "from@example.com"
layout "mailer"
end
end

View file

View file

@ -0,0 +1,5 @@
module Dashboard
class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true
end
end

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Dashboard</title>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_link_tag "dashboard/application", media: "all" %>
</head>
<body>
<%= yield %>
</body>
</html>