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

https://github.com/meteorops/gotemplate-parser-online

GoTemplate Parser Online WebUI
https://github.com/meteorops/gotemplate-parser-online

Last synced: 5 months ago
JSON representation

GoTemplate Parser Online WebUI

Awesome Lists containing this project

README

          

# Go Template Online Parser
https://go-template-debugger.herokuapp.com/

# Description
GoTemplate online parser + helm parser online to make it easier to debug go-templates and helm templates

# Local Development

## UI Only
```bash
cd webui-vue
yarn serve
```

## Backend
```bash
./build.sh
docker run -it -e PORT=3000 -p 3000 docker.io/library/gotplonline
```
or
```bash
./build.sh
go run main.go
```

# Deploy Heroku
```bash
heroku container:login
git add -A
git commit -m "" -a
git push heroku main
```