Daisy UI

Public
Daisy uy template
Used 12 times
Created by
M Marco Beffa

Usage
rails new name_app -d postgresql -j esbuild
cd app
 

Run this command in your Rails app directory in the terminal:

rails app:template LOCATION="https://railsbytes.com/script/XLEs4P"
Template Source

Review the code before running this template on your machine.

# rails_template_daisyUi.rb

# Step 1: Crea una nuova app Rails


# Step 2: Aggiungi le gemme per TailwindCSS
run './bin/bundle add tailwindcss-ruby'
run './bin/bundle add tailwindcss-rails'
run './bin/rails tailwindcss:install'

# Step 3: Aggiungi DaisyUI
run 'curl -sLo app/assets/tailwind/daisyui.js https://esm.run/daisyui@5/index.js'

# Step 4: Configura TailwindCSS
append_to_file 'app/assets/tailwind/application.css' do
  "\n@plugin './daisyui.js';\n"
end

# Step 5: Crea il controller Pages con l'azione home
generate(:controller, 'Pages', 'home')

# Step 6: Crea il modello User direttamente nel database
run 'rails g authentication'
rake 'db:migrate'

# Step 7: Crea un utente predefinito nel database
append_to_file 'db/seeds.rb' do
  "User.create(email_address: '[email protected]', password: '123456')\n"
end
rake 'db:seed'

# Step 8: Configura le rotte per la home
route "root to: 'pages#home'"

# Step 9: Modifica la vista home.html.erb per aggiungere un pulsante
append_to_file 'app/views/pages/home.html.erb' do
  "\n<button class='btn btn-primary'>Hello daisyUI!</button>\n"
end
Comments

Sign up or Login to leave a comment.