don't mix up microblog.pub v. micropub

This commit is contained in:
Jack Laxson 2019-06-04 17:03:06 -04:00
parent 89a4228e22
commit 3a6a52b53c
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ config:
# Build the container for the setup wizard on-the-fly
cd setup_wizard && docker build . -t $(SETUP_WIZARD_IMAGE)
# Run and remove instantly
-docker run -e MICROPUB_WIZARD_PROJECT_NAME --rm -it --volume $(PWD):/app/out $(SETUP_WIZARD_IMAGE)
-docker run -e MICROBLOGPUB_WIZARD_PROJECT_NAME --rm -it --volume $(PWD):/app/out $(SETUP_WIZARD_IMAGE)
# Finally, remove the tagged image
docker rmi $(SETUP_WIZARD_IMAGE)

View file

@ -57,7 +57,7 @@ def main() -> None:
with config_file.open("w") as f:
f.write(out)
proj_name = os.getenv("MICROPUB_WIZARD_PROJECT_NAME", "micropub")
proj_name = os.getenv("MICROBLOGPUB_WIZARD_PROJECT_NAME", "microblogpub")
env = {
"WEB_PORT": 5005,