https://github.com/go-liquor/liquor
Liquor is a framework for backend development of a golang web application
https://github.com/go-liquor/liquor
framework fx gin golang
Last synced: over 1 year ago
JSON representation
Liquor is a framework for backend development of a golang web application
- Host: GitHub
- URL: https://github.com/go-liquor/liquor
- Owner: go-liquor
- License: mit
- Created: 2025-01-29T22:07:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-27T00:39:15.000Z (over 1 year ago)
- Last Synced: 2025-03-27T01:31:42.101Z (over 1 year ago)
- Topics: framework, fx, gin, golang
- Language: Go
- Homepage: https://go-liquor.github.io
- Size: 84 KB
- Stars: 5
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# liquor

Liquor is a web development framework built with Golang, designed to simplify the implementation of web projects. It is primarily focused on backend development and leverages several libraries specifically tailored for web development.
- [Docs](https://go-liquor.github.io)
- [Installation](#install-cli)
- [Usage](#usage)
- [Create a new app](#create-a-new-app)
- [Create a new migration](#create-a-new-migration)
- [Create a new service](#create-a-new-service)
- [Create a new api](#create-a-new-api)
## Install CLI
```bash
go install github.com/go-liquor/liquor/v2@latest
```
## Usage
### Create a new app
```bash
liquor create app --name --pkg
```
### Create a new migration
```bash
liquor create migration --name
```
### Create a new service
```bash
liquor create service --name
```
### Create a new api
```bash
liquor create api --name
```