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

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

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
```