文件名称:basic-app-api:基本应用程序服务器,带有用于基本应用程序的基本API
文件大小:215KB
文件格式:ZIP
更新时间:2024-05-20 18:14:54
api golang gorilla authentication postgresql-database
基本应用程式API 用于验证用户,管理用户会话和处理业务逻辑的服务。 安装和运行 # Starting local server $ go run main.go # Run all tests $ go test ./... # Compile and create executable This will place the executable under go/bin $ go install # Run the executable $ basic-app-api 背景 本质上,这是MVC中用于存储在Postgresql数据库中基于cookie的会话的模型和控制器。 如果您需要将Cookie存储更改为Redis数据库,应该不难。 CSRF保护和会话都从Golang软件包的Gorilla库中实现。 数据库管理基本上是手工完成的,目前没有使用ORM。 设置数据库需要遵循有关Po