Merge pull request #391 from dingedi/feature/clear-root

Make the github root less cluttered.
This commit is contained in:
Piero Toffanin 2023-01-13 10:34:05 -05:00 committed by GitHub
commit ad1fbcd54d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 37 additions and 31 deletions

View file

@ -1,3 +1,3 @@
.git*
Dockerfile
docker
.Dockerfile.swp

View file

@ -26,7 +26,7 @@ jobs:
python -m pip install --upgrade pip
pip install pytest flake8
pip install .
python compile_locales.py
python scripts/compile_locales.py
- name: Check code style with flake8 (lint)
run: |
@ -61,6 +61,6 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python compile_locales.py
python scripts/compile_locales.py
python setup.py sdist bdist_wheel
twine upload dist/*

View file

@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
@ -51,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Docker build
run: docker build -t libretranslate .
run: docker build -f docker/Dockerfile -t libretranslate .
- name: Docker build with some models
run: docker build -t libretranslate --build-arg models=en,es .
run: docker build -f docker/Dockerfile -t libretranslate --build-arg models=en,es .

0
.gitmodules vendored
View file

View file

@ -139,7 +139,7 @@ Then open a web browser to http://localhost:5000
### Build with Docker
```bash
docker build [--build-arg with_models=true] -t libretranslate .
docker build -f docker/Dockerfile [--build-arg with_models=true] -t libretranslate .
```
If you want to run the Docker image in a complete offline environment, you need to add the `--build-arg with_models=true` parameter. Then the language models are downloaded during the build process of the image. Otherwise these models get downloaded on the first run of the image/container.
@ -218,7 +218,7 @@ If you're using docker:
Start the program with the `--update-models` argument. For example: `libretranslate --update-models` or `./run.sh --update-models`.
Alternatively you can also run the `install_models.py` script.
Alternatively you can also run the `scripts/install_models.py` script.
## Run with WSGI and Gunicorn
@ -307,7 +307,7 @@ If you use Gunicorn, make sure to create a directory for storing multiprocess da
mkdir -p /tmp/prometheus_data
rm /tmp/prometheus_data/*
export PROMETHEUS_MULTIPROC_DIR=/tmp/prometheus_data
gunicorn -c gunicorn_conf.py --bind 0.0.0.0:5000 'wsgi:app(metrics=True)'
gunicorn -c scripts/gunicorn_conf.py --bind 0.0.0.0:5000 'wsgi:app(metrics=True)'
```
## Language Bindings
@ -384,7 +384,7 @@ First you need to collect data, for example from [Opus](http://opus.nlpl.eu/), t
## Localization
The LibreTranslate Web UI is available in all the languages for which LibreTranslate can translate to. It can also (roughly) [translate itself!](https://github.com/LibreTranslate/LibreTranslate/blob/main/update_locales.py) Some languages might not appear in the UI since they haven't been reviewed by a human yet. You can enable all languages by turning on `--debug` mode.
The LibreTranslate Web UI is available in all the languages for which LibreTranslate can translate to. It can also (roughly) [translate itself!](https://github.com/LibreTranslate/LibreTranslate/blob/main/scripts/update_locales.py) Some languages might not appear in the UI since they haven't been reviewed by a human yet. You can enable all languages by turning on `--debug` mode.
To help improve or review the UI translations:
- Go to https://hosted.weblate.org/projects/libretranslate/app/#translations. All changes are automatically pushed to this repository.

View file

@ -5,10 +5,10 @@ services:
container_name: libretranslate-cuda
build:
context: .
dockerfile: docker/Dockerfile.cuda
dockerfile: docker/cuda.Dockerfile
restart: unless-stopped
ports:
- 5000:5000
- "5000:5000"
deploy:
resources:
reservations:

View file

@ -3,10 +3,12 @@ version: "3"
services:
libretranslate:
container_name: libretranslate
build: .
build:
context: .
dockerfile: docker/cuda.Dockerfile
restart: unless-stopped
ports:
- 5000:5000
- "5000:5000"
## Uncomment above command and define your args if necessary
# command: --ssl --ga-id MY-GA-ID --req-limit 100 --char-limit 500
## Uncomment this section and the `volumes` section if you want to backup your API keys
@ -16,4 +18,4 @@ services:
# - libretranslate_api_keys:/app/db/api_keys.db
# volumes:
# libretranslate_api_keys:
# libretranslate_api_keys:

View file

@ -1,4 +1,4 @@
FROM python:3.8.14-slim-bullseye as builder
FROM python:3.10.9-slim-bullseye as builder
WORKDIR /app
@ -15,14 +15,14 @@ RUN python -mvenv venv && ./venv/bin/pip install --upgrade pip
COPY . .
# Install package from source code, compile translations
RUN ./venv/bin/pip install Babel==2.11.0 && ./venv/bin/python compile_locales.py \
RUN ./venv/bin/pip install Babel==2.11.0 && ./venv/bin/python scripts/compile_locales.py \
&& ./venv/bin/pip install . \
&& ./venv/bin/pip cache purge
FROM python:3.8.14-slim-bullseye
FROM python:3.10.9-slim-bullseye
ARG with_models=false
ARG models=
ARG models=""
RUN addgroup --system --gid 1032 libretranslate && adduser --system --uid 1032 libretranslate && mkdir -p /home/libretranslate/.local && chown -R libretranslate:libretranslate /home/libretranslate/.local
USER libretranslate
@ -33,9 +33,9 @@ WORKDIR /app
RUN if [ "$with_models" = "true" ]; then \
# initialize the language models
if [ ! -z "$models" ]; then \
./venv/bin/python install_models.py --load_only_lang_codes "$models"; \
./venv/bin/python scripts/install_models.py --load_only_lang_codes "$models"; \
else \
./venv/bin/python install_models.py; \
./venv/bin/python scripts/install_models.py; \
fi \
fi

View file

@ -2,7 +2,7 @@ FROM nvidia/cuda:11.2.2-devel-ubuntu20.04
ENV ARGOS_DEVICE_TYPE cuda
ARG with_models=true
ARG models=
ARG models=""
WORKDIR /app
@ -27,14 +27,14 @@ RUN if [ "$with_models" = "true" ]; then \
pip3 install -e .; \
# initialize the language models
if [ ! -z "$models" ]; then \
./install_models.py --load_only_lang_codes "$models"; \
./scripts/install_models.py --load_only_lang_codes "$models"; \
else \
./install_models.py; \
./scripts/install_models.py; \
fi \
fi
# Install package from source code
RUN pip3 install Babel==2.11.0 && python3 compile_locales.py \
RUN pip3 install Babel==2.11.0 && python3 scripts/compile_locales.py \
&& pip3 install . \
&& pip3 cache purge

View file

@ -33,9 +33,9 @@ docker run -ti --rm -p %LT_PORT%:%LT_PORT% %DB_VOLUME% -v lt-local:/home/libretr
GOTO :done
:install_docker
ECHO Cannot find docker! Go to https://docs.docker.com/desktop/install/windows-install/ and install docker before running this script (pressing Enter will open the page)
ECHO Cannot find docker! Go to https://docs.docker.com/desktop/install/windows-install/ and install docker before running this script (pressing Enter will open the page)
pause
start "" https://docs.docker.com/desktop/install/windows-install/
GOTO :done
:done
:done

View file

@ -1,6 +1,7 @@
#!/usr/bin/env python
import sys
import os
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
from babel.messages.frontend import main as pybabel
if __name__ == "__main__":

View file

@ -1,4 +1,7 @@
#!/usr/bin/env python
import sys
import os
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
import argparse
from libretranslate.init import check_and_install_models

View file

@ -11,7 +11,7 @@ if __name__ == "__main__":
type=str,
nargs=1,
help="Path to suggestions.db file",
default='suggestions.db'
default='db/suggestions.db'
)
parser.add_argument(
"--clear",

View file

@ -1,6 +1,7 @@
#!/usr/bin/env python
import sys
import os
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
import re
import polib
import json

View file

@ -22,16 +22,15 @@ setup(
],
},
python_requires='>=3.7.0',
python_requires='>=3.8.0',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
install_requires=open("requirements.txt", "r").readlines(),
tests_require=['pytest==7.1.2'],
tests_require=['pytest==7.2.0'],
setup_requires=['pytest-runner'],
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 ",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"