How to get it up and running locally?
See original GitHub issueHi! I’ve forked and cloned this repo to try get set up locally just to play around. I’m a Docker newbie and I might not be understanding the instructions in the contributing doc.
After running docker-compose up
I get the following output:
And the container seems to be running:
But how to access the site locally, after doing that?
https://localhost:8080
from the Webpack output doesn’t load.
Followed a Youtube guide and tried this:
https://localhost:46753/
doesn’t load.
Help? 🤔
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (8 by maintainers)
Top Results From Across the Web
Getting Up and Running Locally - Cookiecutter Django
Setting Up Development Environment . Make sure to have the following on your host: Python 3.10. PostgreSQL. Redis, if using Celery.
Read more >How do you set up a local testing server? - MDN Web Docs
Running a simple local HTTP server · Go to python.org · Under the Download section, click the link for Python "3. · At...
Read more >Running a Server Locally with Node and Express - Medium
We do this with the localhost:{portnumber} url in our browser (Replace {portnumber} with the port the server is listening on). Before we get...
Read more >How to run things locally – three.js docs
If you use just procedural geometries and don't load any textures, webpages should work straight from the file system, just double-click on HTML...
Read more >How We Develop Backend Services Locally - Eager Blog
Have you ever wanted to switch easily between developing against remote web services and local ones running on your computer? Here's our setup...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you everyone! #3142 fixes it for me and I’m up and running locally 🎉
The
docker-compose up
command will automatically runyarn start
The http service was removed from the compose file in this commit https://github.com/DestinyItemManager/DIM/commit/55358db06b22409d136d562ca2e80ae735f9c201#diff-4e5e90c6228fd48698d074241c2ba760
I’m making an assumption that an http service is now included in the
yarn start
command and bound to port 8080 which means a port mapping directive needs to be added to the compose file to expose the port so it is accessible by the hostThis pull request does just that https://github.com/DestinyItemManager/DIM/pull/3142/files
Thanks @LongLiveCHIEF for taking care of that