Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wawandco/liquo
Liquo is an Experimental Oxpecker liquibase plugin
https://github.com/wawandco/liquo
Last synced: 2 days ago
JSON representation
Liquo is an Experimental Oxpecker liquibase plugin
- Host: GitHub
- URL: https://github.com/wawandco/liquo
- Owner: wawandco
- License: mit
- Created: 2021-03-30T00:30:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-19T17:10:51.000Z (over 2 years ago)
- Last Synced: 2024-06-19T19:42:17.172Z (5 months ago)
- Language: Go
- Size: 117 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.go
- License: LICENSE
Awesome Lists containing this project
README
# Liquo
Liquo is an experimental Liquibase plugin for oxpecker. It's aimed to make the development of Buffalo apps with Liquibase migrations a bit more easy but avoiding the installation of Java tools for the development workflow.
## InstallationLiquo is provided as a library you can pull it with
```
go get github.com/wawandco/liquo
```An then in your cmd/ox/main.go use it by appending it to the CLi plugins.
```
...
cl.Plugins = append(cl.Plugins, liquo.Plugins()...)
...
```## Limited Functionallity
Liquo still experimental, it does not provide the same amount of statements, formats or databases that liquibase supports.
Liquo ONLY supports:
- PostgresSQL Database
- Liquibase XML format, only the following statements:
- sql
- rollbackWhile is possible to add the rest of statements this is where the tool is at the moment.
## LicenseLiquo is released under the [MIT License](LICENSE).