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
- Host: GitHub
- URL: https://github.com/templui/templui-quickstart
- Owner: templui
- License: mit
- Created: 2024-10-09T16:39:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-11T01:39:48.000Z (12 months ago)
- Last Synced: 2025-07-14T23:07:28.685Z (11 months ago)
- Language: Go
- Homepage: https://templui.io
- Size: 392 KB
- Stars: 39
- Watchers: 1
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.