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
- Host: GitHub
- URL: https://github.com/meteorops/gotemplate-parser-online
- Owner: MeteorOps
- Created: 2021-05-06T17:43:48.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-20T12:19:01.000Z (almost 5 years ago)
- Last Synced: 2025-01-21T13:13:37.836Z (over 1 year ago)
- Language: Vue
- Size: 7.75 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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
```