Skip to content
/ note Public
forked from Sunbalcony/note

note是一款优美,轻便的文档共享工具,支持一键分享,多人协作在线编辑,好用到上天,网页打代码不是梦!

Notifications You must be signed in to change notification settings

lanheader/note

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

一个web笔记本

本站demo:长期维护 https://note.valarx.com

更新记录

2021/09/10

添加通过API POST请求创建

2021/09/30

配置项解耦,全部放在config/application.yml中

 创建:
 POST /api/create 
 参数 Text 
 通过API来创建一个笔记本
 返回 一个URL 打开即可访问
 
 更新
 POST /api/update
 参数 Tag Text
 通过API来更新一个已经存在笔记本的内容
 

Nginx代理配置

        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 &

About

note是一款优美,轻便的文档共享工具,支持一键分享,多人协作在线编辑,好用到上天,网页打代码不是梦!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 65.1%
  • JavaScript 17.9%
  • CSS 10.8%
  • HTML 6.2%