# note **Repository Path**: bluestone029/note ## Basic Information - **Project Name**: note - **Description**: note是一款优美,轻便的文档共享工具,支持一键分享,多人协作在线编辑,好用到上天,网页打代码不是梦! - **Primary Language**: Go - **License**: MIT - **Default Branch**: main - **Homepage**: https://note.grpc.fun - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2022-01-28 - **Last Updated**: 2022-01-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 一个web笔记本 本站demo:长期维护 https://note.grpc.fun ## 更新记录 2021/09/10 添加通过API POST请求创建 2021/09/30 配置项解耦,全部放在config/application.yml中 ``` 创建: POST /api/create 参数 Text 通过API来创建一个笔记本 返回 一个URL 打开即可访问 更新 POST /api/update 参数 Tag Text 通过API来更新一个已经存在笔记本的内容 ``` ## Nginx代理配置 ```shell location / { proxy_pass http://127.0.0.1:23456; #携带域名 proxy_set_header Host $host; } ``` 原项目地址:https://github.com/pereorga/minimalist-web-notepad ## 使用说明: go version 1.16 export GO111MODULE=on export GOPROXY=https://goproxy.cn go build后将文件夹二进制要放在note目录下 nohup ./note &