├── .buildpacks ├── .coveragerc ├── .env ├── .github └── dependabot.yml ├── .gitignore ├── .restyled.yaml ├── .travis.yml ├── Aptfile ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Procfile ├── README.md ├── chess_server ├── __init__.py ├── chessgame.py ├── main.py ├── models.py ├── routes.py └── utils.py ├── config.py ├── index.html ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── runtime.txt ├── tests ├── __init__.py ├── conftest.py ├── data.py ├── test_chess_server.py ├── test_chessgame.py ├── test_db.py ├── test_main.py ├── test_routes.py ├── test_utils.py └── utils.py └── wsgi.py /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/.buildpacks -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/.coveragerc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/.env -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/.gitignore -------------------------------------------------------------------------------- /.restyled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/.restyled.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/.travis.yml -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- 1 | # For heroku-community/Aptfile buildpack 2 | stockfish 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn wsgi:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/README.md -------------------------------------------------------------------------------- /chess_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/chess_server/__init__.py -------------------------------------------------------------------------------- /chess_server/chessgame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/chess_server/chessgame.py -------------------------------------------------------------------------------- /chess_server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/chess_server/main.py -------------------------------------------------------------------------------- /chess_server/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/chess_server/models.py -------------------------------------------------------------------------------- /chess_server/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/chess_server/routes.py -------------------------------------------------------------------------------- /chess_server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/chess_server/utils.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/config.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/index.html -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/tests/data.py -------------------------------------------------------------------------------- /tests/test_chess_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/tests/test_chess_server.py -------------------------------------------------------------------------------- /tests/test_chessgame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/tests/test_chessgame.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/tests/test_routes.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/tests/utils.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikochiko/df-wizard-chess/HEAD/wsgi.py --------------------------------------------------------------------------------