Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hadiko-i6/zischr
zischr is a self-service point-of-sale & accounting solution
https://github.com/hadiko-i6/zischr
accounting drinks golang pos python qt
Last synced: 5 days ago
JSON representation
zischr is a self-service point-of-sale & accounting solution
- Host: GitHub
- URL: https://github.com/hadiko-i6/zischr
- Owner: hadiko-i6
- License: mit
- Created: 2018-01-27T16:23:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-14T20:55:28.000Z (over 6 years ago)
- Last Synced: 2024-08-02T12:47:13.622Z (3 months ago)
- Topics: accounting, drinks, golang, pos, python, qt
- Language: Python
- Homepage:
- Size: 97.7 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - hadiko-i6/zischr - zischr is a self-service point-of-sale & accounting solution (qt)
README
# zischr
zischr is a self-service point-of-sale & accounting solution for groups of 15-20 people.
![Alt](https://github.com/hadiko-i6/zischr/wiki/screenshots/main-screen.png)
## Deployment on Raspberry Pi 3
(This assumes the Pi has the single purpose of running zischr. Otherwise, you should consider a better isolation strategy. We're happy about a PR with scripts / Dockerfiles / whatever for the `deployment/` directory).
Install Raspbian Stretch on your Raspberry Pi 3 ([Official Guide](https://www.raspberrypi.org/documentation/installation/installing-images/README.md)).
Change the password of the default `pi`.
Afterwards, run the following commands as **root**:```
apt-get install git
cd /root
git clone https://github.com/hadiko-i6/zischr.git /root/zischrdb_checkout
mkdir /root/zischrdb
/root/zischrdb_checkout/deployment/raspi3/deploy.sh
```This installs build & runtime dependencies and deploys a **copy** of the relvant runtime files ot `/zischr`.
`deploy.sh` also removes everythin in `/zischr` (the fsdb is kept in `/root/zischrdb`, no worries).To keep a Git history of zischrdb, take a look into the hook functionality of the `backend server` command in the `zischr-backend.service` file.
### Updating
```
cd /root/zischrdb_checkout
git pull --ff-only
deployment/raspi3/deploy.sh
```