Web-based frontend for translating stack traces of SpringRTS engine crashes.
- Docker
- docker-compose
-
Clone the repository:
git clone https://github.com/beyond-all-reason/stacktrace_translator.git
-
Navigate to the directory:
cd stacktrace_translator
-
Build Docker image:
docker-compose build
Or completely rebuild it via (also needs a complete rebuild if git repo has changes!):
docker-compose build --no-cache
-
Deploy Docker image:
docker-compose up
-
http://127.0.0.1:8000
Use a URL or manually copy and paste into the textbox the infolog.txt
of a crashed Spring.
- Only Windows versions can be translated.
- At max 100.000 bytes are downloaded.
- The app takes a couple of minutes to process the data.
If you are locally changing the files for the translator while building the image, uncomment these two lines in python-server:
COPY stacktrace_translator.py .
COPY update_debug_symbols.py .