docker run -dt --name bark -p 8080:8080 -v `pwd`/bark-data:/data finab/bark-serverIf you use the docker-compose tool, you can copy docker-copose.yaml under this project to any directory and run it:mkdir bark-server && cd bark-server curl -sL https://github.com/Finb/bark-server...
bark-server/server.go / Jump to Go to file 316 lines (270 sloc) 21.4 KB Raw Blame package main import ( "encoding/json" "errors" "fmt" "net/http" "os" "path/filepath" "runtime" "strconv" "strings" "github.com/sirupsen/logrus" "github.com/lithammer/shortuuid" "github.com...
bark-server_linux_mipsle_softfloat 12.8 MB 2024-12-18T07:35:17Z bark-server_linux_mips_hardfloat 12.8 MB 2024-12-18T07:35:16Z bark-server_windows_386.exe 11.7 MB 2024-12-18T07:36:35Z bark-server_windows_amd64.exe 12.4 MB 2024-12-18T07:36:35Z bark-server_windows_amd...
3、Start bark-server:./bark-server -l 0.0.0.0 -p 8080 -d ./bark-data 4、Test the server:curl localhost:8080/ping Note: Bark-server uses the /data directory to store data by default. Make sure that bark-server has permission to write to the /data directory, otherwise use the-doption...
GitHub官方仓库:https://github.com/Finb/bark-server官方文档地址:https://bark.day.app/作者博客:https://day.app/2018/06/bark-server-document/ 4. 搭建环境 服务器:腾讯香港轻量应用服务器 24 元 / 月 VPS 一台 咕咕自己搭建用的是硅谷的腾讯轻量应用服务器,(这次最好选 非大陆的,而且线路还不错的...
Bark客户端:https://github.com/Finb/Bark Bark服务端:https://github.com/Finb/bark-server Bark苹果App Store:https://apps.apple.com/cn/app/bark-customed-notifications/id1403753865 谷歌浏览器插件:https://chrome.google.com/webstore/detail/bark/pmlkbdbpglkgbgopghdcmohdcmladeii ...
Security Insights Additional navigation options Files master .gitignore Dockerfile Makefile README.md docker-compose.yaml go.mod go.sum main.go server.go version Breadcrumbs bark-server / Latest commit mritd feat(docker): add docker compose support ...
mritd refactor(server): refactor 71a605f· Mar 1, 2019 HistoryHistory File metadata and controls Code Blame 14 lines (11 loc) · 198 Bytes Raw # Binaries for programs and plugins *.exe *.exe~ *.dll *.so *.dylib # Test binary, build with `go test -c` *.test # Output of the...
https://github.com/Finb/bark-server 运行 ./bark-server_linux_amd64 -addr 0.0.0.0:8080 -data ./bark-data 你可能需要 chmod +x bark-server_linux_amd64 请注意bark-server默认使用/data目录保存数据,请确保bark-server有权限读写/data目录,或者你可以使用-data选项指定一个目录 ...
Github项目地址: 服务端地址:bark-server 客户端源码:Bark App 二. 安装 2.1 安装barkserver 在自己服务器上配置好docker后,万物皆可docker。推荐使用docker-compose方式部署。 Docker部署 docker run-dt--name bark-p8080:8080-v`pwd`/bark-data:/data finab/bark-server ...