https://github.com/harness/lite-engine
lite-engine
https://github.com/harness/lite-engine
Last synced: 6 days ago
JSON representation
lite-engine
- Host: GitHub
- URL: https://github.com/harness/lite-engine
- Owner: harness
- License: other
- Created: 2021-10-26T12:31:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-03T00:48:30.000Z (9 months ago)
- Last Synced: 2025-04-03T19:25:06.243Z (9 months ago)
- Language: Go
- Size: 16.3 MB
- Stars: 11
- Watchers: 57
- Forks: 19
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Lite-engine
How to use:
* Create an .env file. It can be empty.
* To build linux and windows `GOOS=windows go build -o lite-engine.exe; go build`
* Generate tls credentials: go run main.go certs
* Start server: go run main.go server
* Client call to check health status of server: go run main.go client.
## Release procedure
Run the changelog generator.
```BASH
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u harness -p lite-engine -t
```
You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.
Next we tag the PR's with the fixes or enhancements labels. If the PR does not fulfil the requirements, do not add a label.
**Before moving on make sure to update the version file `version/version.go`.**
Run the changelog generator again with the future version according to semver.
```BASH
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u harness -p lite-engine -t --future-release v0.4.7
```
Create your pull request for the release. Get it merged then tag the release.