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

https://github.com/vicanso/wsl

卫斯理小说
https://github.com/vicanso/wsl

Last synced: about 1 month ago
JSON representation

卫斯理小说

Awesome Lists containing this project

README

          

# wsl

## 测试环境

```bash
docker run \
-p 5432:5432 \
-e POSTGRES_USER=test \
-e POSTGRES_PASSWORD=123456 \
--restart=always \
--name=shark \
-d postgres:alpine
```

```
# 切换用户
psql -U test

CREATE USER vicanso WITH PASSWORD '123456';

CREATE DATABASE "novel" OWNER vicanso;

GRANT ALL PRIVILEGES ON DATABASE "novel" to vicanso;

```