Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
23333 committed Aug 22, 2024
1 parent af987ac commit ce6e35d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Minimalist Web Notepad Golang

Minimalist Web Notepad Golang重置版
Minimalist Web Notepad Golang重置版

最近我在github发现了一个不错的PHP项目[Minimalist Web Notepad](https://github.com/pereorga/minimalist-web-notepad)

Expand All @@ -16,14 +16,16 @@ docker run -d -it --rm \
-p 8080:80/tcp \
ghcr.io/gaoyaxuan/minimalist-web-notepad-go:latest
```
或者下载[docker-compose.yml](docker-compose.yml) docker-compose up -d
或者下载[docker-compose.yml](docker-compose.yml) docker-compose up -d

```
## 使用方法
1. 访问网页: [https://note.u-web.pp.ua/(演示站不定期崩坏)](https://note.u-web.pp.ua/)
2. 它会随机分配指定字符组成的地址,如 https://note.u-web.pp.ua/1234567890 ,如果想指定地址,只需要访问时手动修改,如 https://note.u-web.pp.ua/114514 。
1. 访问网页: http://192.168.1.10:8080
2. 它会随机分配指定字符组成的地址,如 http://192.168.1.10:8080/1234567890 ,如果想指定地址,只需要访问时手动修改,如 http://192.168.1.10:8080/114514 。
3. 在上面编辑文本
4. 等待一会(几秒,取决于延迟),服务端就会存储网页内容到名为 114514 的文件里。
5. 关闭网页,如果关闭太快,会来不及保存,丢失编辑。
6. 在其他平台再访问同样的网址,就能剪切内容了 ٩۹(๑•̀ω•́ ๑)۶
7. 通过环境变量 可以自定义随机路径长度: STR_LEN 可以自定义文件保存时间: FILE_MAX_DAY 可以自定义每天什么时候执行清理: SPEC
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func randomString(length int) string {

// 递归删除旧文件,
func deleteOldFiles(dirPath string, days int) error {
// 当前时间减去30天
// 当前时间减去
cutOffDate := time.Now().AddDate(0, 0, -days)
emptyFileCutOffDate := time.Now().AddDate(0, 0, -3)

Expand Down

0 comments on commit ce6e35d

Please sign in to comment.