diff --git a/Makefile b/Makefile index 2790208..0f56b7a 100644 --- a/Makefile +++ b/Makefile @@ -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) diff --git a/setup_wizard/wizard.py b/setup_wizard/wizard.py index dc951e1..98b9676 100644 --- a/setup_wizard/wizard.py +++ b/setup_wizard/wizard.py @@ -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,