An open API service indexing awesome lists of open source software.

https://github.com/templui/templui-quickstart

Quickstart for templUI - The UI Kit templ
https://github.com/templui/templui-quickstart

Last synced: 11 months ago
JSON representation

Quickstart for templUI - The UI Kit templ

Awesome Lists containing this project

README

          

# templUI Quickstart

Get started with templUI, an enterprise-ready UI component library for Go and templ. This template provides a pre-configured setup for building professional web applications with templUI components.

## Installation

For installation instructions, visit our [documentation](https://templui.io/docs/how-to-use#requirements).

## Setup

1. **Clone the Repository**

```bash
git clone https://github.com/axzilla/templui-quickstart.git
cd templui-quickstart
```

2. **Install Dependencies**

```bash
go mod tidy
```

## Development

Start the development server with hot reload:

```bash
make dev
```

Your application will be running at [http://localhost:7331](http://localhost:7331)

## Deployment

This template includes a production-ready Dockerfile for easy deployment:

```bash
# Build the image
docker build -t templui-app .

# Run the container
docker run -p 8090:8090 templui-app
```

Your application will be available at `http://localhost:8090`

## Contributing

Issues and pull requests are welcome! Please read our [contributing guidelines](https://github.com/axzilla/templui/blob/main/CONTRIBUTING.md) before submitting a pull request.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.