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

https://github.com/hominsu/slink

shortlink service
https://github.com/hominsu/slink

cuckoo-filter daisyui golang grpc grpc-go kratos mysql qwik qwik-city shortlink shortlinks sqlite3 typescript url-shortener

Last synced: 8 months ago
JSON representation

shortlink service

Awesome Lists containing this project

README

          


Contributors
Forks
Stargazers
Issues
License
Deploy




slink




Explore the docs »




View Demo
·
Report Bug
·
Request Feature


## Build & Contributing

### Backend

Before building, you need to have `GO >= 1.18`, [Buf CLI](https://docs.buf.build/installation). If you are developing on windows, use [scoop](https://github.com/ScoopInstaller/Scoop) to install `busybox` and `make`

#### Clone this repository

```bash
git clone https://github.com/hominsu/slink.git
```

#### Initial Workspace

```bash
go work init && go work use -r ./app && go mod tidy
```

#### Install dependencies

```bash
make init
```

#### Generate other code

```bash
make api && make conf && make ent && make wire
```

#### Compile

```bash
make build
```

### Frontend

```bash
cd web
pnpm install
pnpm dev
```