https://github.com/bertoni/dat-accounting
An application to control your accounting made by Vue.js + Dat
https://github.com/bertoni/dat-accounting
beakerbrowser dat javascript vuejs webdb
Last synced: about 2 months ago
JSON representation
An application to control your accounting made by Vue.js + Dat
- Host: GitHub
- URL: https://github.com/bertoni/dat-accounting
- Owner: bertoni
- License: bsd-2-clause
- Created: 2018-06-24T23:21:42.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-24T01:44:53.000Z (over 7 years ago)
- Last Synced: 2025-01-22T00:51:14.935Z (over 1 year ago)
- Topics: beakerbrowser, dat, javascript, vuejs, webdb
- Language: JavaScript
- Size: 12.9 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dat-accounting-app
> An application to control your accounting made by Vue.js + Dat
[](https://travis-ci.org/bertoni/dat-accounting)
[](https://codecov.io/gh/bertoni/dat-accounting)
[](https://github.com/bertoni/dat-accounting/blob/master/LICENSE)
## Run the projet with Docker
``` bash
# First, copy the file infra/docker-compose-sample.yml to infra/docker-compose.yml
cp infra/docker-compose-sample.yml infra/docker-compose.yml
# Open the file infra/docker-compose.yml and change parameters for your use (need to change path project and localtime path. Linux distros usually is in /etc/localtime, in macOs in /usr/share/zoneinfo/some-locality, windows i'm sorry).
sed -i 's/path\/your\/project/var\/www\/dataccounting\/newapp/' infra/docker-compose.yml
sed -i 's/path\/your\/localtime/etc\/localtime/' infra/docker-compose.yml
# Install all dependencies (not forget to change path to your project)
docker run -it --rm --user node -v /path/your/project/:/var/www/app -v /path/your/localtime:/etc/localtime node:8 yarn --cwd /var/www/app/ install --pure-lockfile
# Up containers to view project
docker-compose -f infra/docker-compose.yml up -d
# Generate build to share with Dat
docker run -it --rm --user node -v /path/your/project/:/var/www/app -v /path/your/localtime:/etc/localtime node:8 npm --prefix /var/www/app/ run build
```