Skip to content

A simple web app for saving and searching cocktail recipes.

License

Notifications You must be signed in to change notification settings

gthole/drink-stash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d0b4aa9 · Mar 5, 2022
Dec 19, 2021
Jul 9, 2020
Oct 31, 2020
Mar 5, 2022
Mar 27, 2019
Mar 5, 2022
Jan 3, 2021
Jul 18, 2020
Jan 3, 2021
Jan 3, 2021
Jan 3, 2021

Repository files navigation

Drink Stash

A little web app for saving and searching for cocktail recipes.

Features

  • Built for mobile devices
  • Search for recipes with an expressive (nerdy) query engine
  • Keep lists for menus or of things you love or want to try
  • Track what's in your liquor cabinet so you can easily find what you can make
  • Over a 150 classic cocktails and original recipes to get you started
  • Dark mode
  • Lightweight server, tidily packaged in Docker

Screenshots

Running

Run it behind an HTTP reverse-proxy for TLS-termination etc. You can run it from the base image, storing persistent data in a sqlite database in a mounted volume. With docker-compose:

version: '3.7'

services:
    api:
        image: 'gthole/drink-stash:latest'
        init: true
        restart: 'always'
        environment:
            SECRET_KEY=<yourlongsecretkey>
            ALLOWED_HOSTS=<yourhostname>
        ports:
            - '8000'
        volumes:
            - './data:/data'
            - './public:/public'

The SECRET_KEY should be a long random string of characters, and the ALLOWED_HOSTS is a comma-separated list of hostnames you plan to use to access the app.

Settings

Drink Stash imports settings from environment variables. Values that are arrays (e.g. ALLOWED_HOST) are interpreted to be a comma separated list. A limited set of variables are currently supported.

For example:

EMAIL_HOST=mail.mydomain.com
[email protected]
EMAIL_HOST_PASSWORD=emailpassword
DEFAULT_FROM_EMAIL=Drink Stash <[email protected]>
[email protected]
TIME_ZONE=America/Los_Angeles
ALLOWED_HOSTS=drinks.mydomain.com
DEBUG=False
ADMINS=Me:[email protected],Someone Else:[email protected]

Provisioning

When starting up your container, you should set the following environment variables to provision an initial user and some recipes to get started with:

version: '3'

services:
    api:
        image: 'gthole/drink-stash:latest'
        restart: 'always'
        environment:
            SECRET_KEY=<yourlongsecretkey>
            ALLOWED_HOSTS=<yourhostname>
            DJANGO_SUPERUSER_USERNAME=<yourusername>
            DJANGO_SUPERUSER_EMAIL=<youremail>
            DJANGO_SUPERUSER_PASSWORD=changeme
            DJANGO_SUPERUSER_FIRST_NAME=<first>
            DJANGO_SUPERUSER_LAST_NAME=<last>
            INITIAL_FIXTURES=recipes
        ports:
            - '8000'
        volumes:
            - './data:/data'
            - './public:/public'

This will run a provisioning script on startup that creates a superuser if no users exist, and creates initial recipes to search. On subsequent container starts you can remove the DJANGO_SUPERUSER_* and INITIAL_FIXTURES variables.

Development Environment

Install Docker.

# Build the app image
$ docker-compose build api

# Follow the setup instructions in the Provisioning section above

# Start the server
$ docker-compose up

# Run the API unit tests
$ docker-compose run --rm api ./manage.py test drinks