DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: e09fcc3b0fe1575540988ea9672edaa0a1d90aa7 deck-builder/api/dev-launch-alpine.sh -rwxr-xr-x 471 bytes
e09fcc3bJonni Liljamo feat(client): sane-ish supply pile spawning 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash

export COMPOSE_PROJECT_NAME=sdbapi

function confirm() {
  echo -n "$@ [y/N]: "
    read -e answer
    for response in y Y
    do
        if [ "_$answer" == "_$response" ]
        then
            return 0
        fi
    done

    # default to no
    return 1
}

confirm reset containers? && docker-compose down
confirm reset database? && docker volume rm sdbapi_apidb_data

confirm rebuild api? && docker-compose build

confirm launch? && docker-compose up