Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beyond-all-reason/stacktrace_translator
This provides a web-based frontend for translating stack traces of SpringRTS engine crashes
https://github.com/beyond-all-reason/stacktrace_translator
Last synced: 9 days ago
JSON representation
This provides a web-based frontend for translating stack traces of SpringRTS engine crashes
- Host: GitHub
- URL: https://github.com/beyond-all-reason/stacktrace_translator
- Owner: beyond-all-reason
- Created: 2021-08-30T14:53:01.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-02T07:57:55.000Z (4 months ago)
- Last Synced: 2024-08-02T09:26:37.820Z (4 months ago)
- Language: Jupyter Notebook
- Size: 1.19 MB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# stacktrace_translator
Web-based frontend for translating stack traces of SpringRTS engine crashes.# Requirements:
- Docker
- docker-compose# Installation:
1. Clone the repository:
```sh
git clone https://github.com/beyond-all-reason/stacktrace_translator.git
```
2. Navigate to the directory:
```sh
cd stacktrace_translator
```
3. Build Docker image:
```sh
docker-compose build
```
Or completely rebuild it via:
```sh
docker-compose build --no-cache
```4. Deploy Docker image:
```sh
docker-compose up
```
5. Deployed:
```
http://127.0.0.1:8000
```
## Usage
Use a URL or manually copy and paste into the textbox the `infolog.txt` of a crashed Spring.### Keep in mind:
- Only Windows versions can be translated.
- At max 100.000 bytes are downloaded.
- The app takes a couple of minutes to process the data.## Local changes
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 .
```