Files
YouCock/local-test/start-server.sh
2025-01-03 14:13:57 -07:00

6 lines
190 B
Bash

# Script used to spin up a local webserver for development
#!/bin/bash
CURR_DIR="$(pwd)"
cd ${PWD}/..
podman run -it --rm --init -p 3000:3000 $(podman build -q -f ./local-test/Dockerfile .)