Tralelho is a tanslation service for medical professionals
This project needs translators. If you speak a language other than English, French or German and would like to contribute, please don't hesitate to contact me. A translation service integration has been set up to make translating this project as simple as possible.
After cloning the repo, some steps have to be taken for a proper setup. Pre-requisites:
- Python
- pip
- virtualenv (optional but recommended)
$ virtualenv ~/tralelho
Once set up and enabled we install the necessary python packages from the requirements.txt file:
$ pip3 install -r requirements.txt
Now the database has to be migrated:
$ python manage.py migrate
and the fixtures will populate the database. The order is important here:
$ python manage.py loaddata languages.json
$ python manage.py loaddata countries.json
And the project should be ready to go. You can take a look at the website with:
python manage.py runserver
Please have a look in the Issues section. Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.