Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanqui/prekapavac
A web app for community-based terminology translations
https://github.com/sanqui/prekapavac
crowdsourcing czech i18n pokemon terminology translation video-game-translation
Last synced: 29 days ago
JSON representation
A web app for community-based terminology translations
- Host: GitHub
- URL: https://github.com/sanqui/prekapavac
- Owner: Sanqui
- License: isc
- Created: 2016-12-31T12:10:22.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-07-17T21:12:16.000Z (4 months ago)
- Last Synced: 2024-07-18T23:21:16.468Z (4 months ago)
- Topics: crowdsourcing, czech, i18n, pokemon, terminology, translation, video-game-translation
- Language: HTML
- Homepage: https://prekapavac.sanqui.net
- Size: 288 KB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Překapávač is a web application for collaborative translation of terminology. It's written with Flask and SQLAlchemy. The UI is currently only in Czech.
A live version with a translation of Pokémon Red ongoing can be found at https://prekapavac.sanqui.net/.
Překapávač is licenced under the ISC license.
## Set up a dev version
Here's a quick way to set up Překapávač.
```
git clone https://github.com/Sanqui/prekapavac
pipenv shell
./download_static.sh
```Open config.py and put the following dev config in:
```
DATABASE = "sqlite:///test.db"SECRET_KEY = "SECRET_KEY"
PRODUCTION = False
DEBUG = True
TEMPLATES_AUTO_RELOAD = TrueSITENAME = "Překapávač DEV"
REGISTER_KEY = "test"
```Run `python db.py` to generate an empty database.
Start the server with `python app.py`. Register a new user account. Use the "test" key while registering. The first user account will be made administrator.
Now you should be up to speed.