feat: add local dev configuration

Includes a reverse-proxy and locally-trusted TLS certs via mkcert, and uses a hostname that already points to 127.0.0.1 without having to modify the hosts file
This commit is contained in:
Kevin Smith
2022-12-30 01:08:12 -06:00
parent 1073ef20c4
commit e95d449b23
6 changed files with 169 additions and 1 deletions

22
scripts/start_local Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
set -e
PROJECT_ROOT="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))/.."
DOCKER_COMPOSE_FILE="${PROJECT_ROOT}/docker-compose.yml"
DOCKER_COMPOSE_LOCAL_FILE="${PROJECT_ROOT}/docker-compose.local.yml"
if ! type "mkcert" &> /dev/null; then
echo "Could not find mkcert, which is required for generating locally-trusted TLS certificates. Follow the installation instructions at https://github.com/FiloSottile/mkcert, then run this script again."
exit 1
fi
mkcert -install
mkcert \
-cert-file ${PROJECT_ROOT}/.nostr.local/certs/nostream.localtest.me.pem \
-key-file ${PROJECT_ROOT}/.nostr.local/certs/nostream.localtest.me-key.pem \
nostream.localtest.me
docker compose \
-f $DOCKER_COMPOSE_FILE \
-f $DOCKER_COMPOSE_LOCAL_FILE \
up --build --remove-orphans $@