visuddhinanda c6fda21570 :meno: 增加pali_text wordindex表结构 4 years ago
..
README.md 577d64f5da Merge branch 'doc-refactor' of https://github.com/VitoVan/mint into VitoVan-doc-refactor 4 years ago
article.md 577d64f5da Merge branch 'doc-refactor' of https://github.com/VitoVan/mint into VitoVan-doc-refactor 4 years ago
author_format.md 67f81cb35b :recycle: mint/documents 目录结构调整 4 years ago
channel.md 577d64f5da Merge branch 'doc-refactor' of https://github.com/VitoVan/mint into VitoVan-doc-refactor 4 years ago
course.md 577d64f5da Merge branch 'doc-refactor' of https://github.com/VitoVan/mint into VitoVan-doc-refactor 4 years ago
deploy.md 67f81cb35b :recycle: mint/documents 目录结构调整 4 years ago
dict.md 67f81cb35b :recycle: mint/documents 目录结构调整 4 years ago
group.md 577d64f5da Merge branch 'doc-refactor' of https://github.com/VitoVan/mint into VitoVan-doc-refactor 4 years ago
palicanon.md c6fda21570 :meno: 增加pali_text wordindex表结构 4 years ago
share.md 577d64f5da Merge branch 'doc-refactor' of https://github.com/VitoVan/mint into VitoVan-doc-refactor 4 years ago
term.md 67f81cb35b :recycle: mint/documents 目录结构调整 4 years ago
translation.md 577d64f5da Merge branch 'doc-refactor' of https://github.com/VitoVan/mint into VitoVan-doc-refactor 4 years ago
user.md 577d64f5da Merge branch 'doc-refactor' of https://github.com/VitoVan/mint into VitoVan-doc-refactor 4 years ago
wbw.md 577d64f5da Merge branch 'doc-refactor' of https://github.com/VitoVan/mint into VitoVan-doc-refactor 4 years ago

README.md

注意

  • 该文档尚未完善,内容仅供参考
  • 该文档中的技术方案尚未敲定,如涉及具体开发,需先行商议

后端开发文档

开发环境(待商议)

  • golang
  • gin
  • PostgreSQL
  • Redis
  • ES

给 vscode 用的 go

sudo apt install yarnpkg golang-go

文档资源

redis https://pkg.go.dev/github.com/go-redis/redis/v8#section-documentation

依赖

https://github.com/go-redis/redis

目录

数据表设计

数据表应包含如下字段

    id SERIAL PRIMARY KEY,
    version     INTEGER NOT NULL DEFAULT (1),
    created_at  TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
    updated_at  TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
    deleted_at  TIMESTAMP //可选