Sign inSign up

beardedtek/chores

By beardedtek

Updated over 4 years ago

An HTML5 Canvas Chore Wheel. https://github.com/beardedtek/chores/

Image
0

220

beardedtek/chores repository overview

Chores

An HTML5 Canvas Chore wheel using:

docker-compose

This is the preferred method to launch.

version: '2'
services:
  chores:
    image: 'beardedtek/chores:latest'
    restart: unless-stopped
    ports:
      - '9001:9001' # Main app
      - '9002:9002' # OPTIONAL sqlite_web interface

sqlite_web interface

The sqlite_web is not installed or enabled by default.

To install and start, run the install-sqlite_web](https://raw.githubusercontent.com/BeardedTek/chores/main/install-sqlite_web) script found in this project's GitHub repository.

#!/bin/bash
docker-compose exec chores touch /var/www/logs/sqlite_web
docker-compose exec chores pip install sqlite_web
docker-compose exec chores sqlite_web /var/www/db/chores.sqlite -p 9002 -H 0.0.0.0 -x

Once, finished, simply issue a Ctrl-C to terminate sqlite_web.

Tag summary

Content type

Image

Digest

Size

177.7 MB

Last updated

over 4 years ago

docker pull beardedtek/chores