We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
beancount 是一个优秀的开源复式记账工具,因为其基于文本记录的特性,难以拓展到移动端;本项目旨在将常见的记账行为封装为 RESTful API。 本仓库使用 Golang 进行文本的读写和接口服务支持,利用 bean-query 获取内容并解析,以 Json 格式返回。并基于已实现的接口内置实现了前端页面(适配移动端)。
beancount 是一个优秀的开源复式记账工具,因为其基于文本记录的特性,难以拓展到移动端;本项目旨在将常见的记账行为封装为 RESTful API。
本仓库使用 Golang 进行文本的读写和接口服务支持,利用 bean-query 获取内容并解析,以 Json 格式返回。并基于已实现的接口内置实现了前端页面(适配移动端)。
beancount-gs github地址
项目有docker启动方式 docker: docker run --name beancount-gs -dp 10000:80 -w /app -v "/data/beancount:/data/beancount" -v "/data/beancount/icons:/app/public/icons" -v "/data/beancount/config:/app/config" -v "/data/beancount/bak:/app/bak" xdbin/beancount-gs:latest
docker-compose: version: "3.9" services: app: container_name: beancount-gs image: xdbin/beancount-gs:${tag:-latest} ports: - "10000:80" volumes: - "${dataPath:-/data/beancount}:/data/beancount" - "${dataPath:-/data/beancount}/icons:/app/public/icons" - "${dataPath:-/data/beancount}/config:/app/config" - "${dataPath:-/data/beancount}/bak:/app/bak" - "${dataPath:-/data/beancount}/logs:/app/logs"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
beancount-gs github地址
项目有docker启动方式
docker:
docker run --name beancount-gs -dp 10000:80
-w /app
-v "/data/beancount:/data/beancount"
-v "/data/beancount/icons:/app/public/icons"
-v "/data/beancount/config:/app/config"
-v "/data/beancount/bak:/app/bak"
xdbin/beancount-gs:latest
docker-compose:
version: "3.9"
services:
app:
container_name: beancount-gs
image: xdbin/beancount-gs:${tag:-latest}
ports:
- "10000:80"
volumes:
- "${dataPath:-/data/beancount}:/data/beancount"
- "${dataPath:-/data/beancount}/icons:/app/public/icons"
- "${dataPath:-/data/beancount}/config:/app/config"
- "${dataPath:-/data/beancount}/bak:/app/bak"
- "${dataPath:-/data/beancount}/logs:/app/logs"
The text was updated successfully, but these errors were encountered: