mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-14 21:23:29 +01:00
Issues getting web app to launch #46
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mattague on GitHub (Jul 16, 2025).
I am having trouble getting the service to load.
This is my compose file (completely stock):
This is my .env file:
And the (hopefully) relevant logs:
@eitchtee commented on GitHub (Jul 16, 2025):
Howdy, let's get this fixed, shall we?
The error you're seeing on the logs is due to the URL variable being empty instead of omitted.
Taking a look at your configurations, you seem to be running WYGIWYH locally (behind your local ip), so you probably want to make the following modifications:
URLfrom your env file instead of leaving it empty;DJANGO_ALLOWED_HOSTStolocalhost 127.0.0.1 [::1] 10.0.0.156, notice the 10.0.0.156, this should be the IP you're going to access WYGIWYH at IF you're not planning on using localhost or 127.0.0.1, this could also be a Tailscale IP (or similar services), you can even add multiple IPs separated by spaceThis should get you going. If everything works, it'll be available on localhost:9005, 127:0.0.1:9005 and 10.0.0.156:9005
Let me know how it goes. Hope you like WYGIWYH.
@mattague commented on GitHub (Jul 16, 2025):
I totally misunderstood the documentation on that part, not sure how it didn't occur to me that leaving a blank variable would cause an issue haha. Thank you for such a quick response.