# bypyoauth **Repository Path**: duchenpaul/bypyoauth ## Basic Information - **Project Name**: bypyoauth - **Description**: Mirror of https://github.com/duchenpaul/bypyoauth.git - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-28 - **Last Updated**: 2023-01-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This is the source code of the bypy OAuth relay server ====================================================== This is actually quite simple. To run it: - Install prerequisites (once only) ```bash pip install -r requirements.txt ``` - Config environments ```bash export BAIDU_API_KEY= export BAIDU_API_SECRET= export PORT= ``` - Run `gunicorn --bind localhost:8080 app:app` That's it. NOTE ---- `Profile`, `Procfile.windows`, `runtime.txt` are for Heroku deployment only, you can ignore them. ## Docker 1. image build: ```bash docker build -t duchenpaul/bypyoauth:latest . docker push duchenpaul/bypyoauth:latest ```