morethancoder / goat

41 stars 1 forks source link

GOAT

Banner

This project is a starting point for developing web apps using a-h/templ.

Tech Stack

Dependencies

Usage

  1. Clone the repo:

    git clone https://github.com/morethancoder/goat.git
  2. Initialize the project:

    go mod init yourprojectname && go mod tidy
  3. Change the import in main.go:

    // Change this:
    "morethancoder/goat/components"
    // To:
    "yourprojectname/components"
  4. Install required Node modules:

    bun install
  5. Start the Vite dev server:

    make vite
  6. Start file watching & compiling:

    make watch
  7. Star the repo!