I think you have looked at the tutorial from Mr. Heinemeier Hansson at least once or twice and have a similar setup.
rails new kamal_pg --css tailwind --skip-test --database=postgresql
cd kamal_pg
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Kamal commands</title> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | |
<style> | |
pre { | |
margin-left: -8.5rem; | |
} |
/* | |
* Conic Gradients Equal Splits | |
* --------------------------------------------- | |
* Here are a series of classes showcasing the evolution of a conic gradient. | |
* Initiated from a 315-degree angle, each gradient progresses clockwise, | |
* incorporating an additional color from a predefined set. | |
* | |
* These classes are perfect for those who either can't or don't wish to use SCSS. | |
* To use, simply integrate the necessary classes into your stylesheet and assign them to your elements. | |
*/ |
// // Add this to your HTML to activate the Stimulus controller | |
// | |
<div data-controller="debug--turbo-listener"></div> | |
// application.js (or wherever you're importing your controllers) | |
// | |
import DebugTurboListenerController from "./debug_turbo_listener_controller"; | |
application.register("debug--turbo-listener", DebugTurboListenerController); | |
// With folder |