DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 3b77fff573d6891ffeac062b831a72008243b8d7 deck-builder/api/scripts/dev-start-db.sh -rwxr-xr-x 495 bytes
3b77fff5Jonni Liljamo feat!(client, server): finish transition to bevy 0.10, and in addition 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
#!/bin/bash

export COMPOSE_PROJECT_NAME=laurelin

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 --file docker-compose.dev.yaml down
confirm reset database? && docker volume rm laurelin_laurelindb_data
confirm launch? && docker compose --file docker-compose.dev.yaml up