https://github.com/kitsuyaazuma/image-processing-100
My solution to ryoppippi/Gasyori100knock
https://github.com/kitsuyaazuma/image-processing-100
docker-compose fastapi mantine-ui nextjs python3 react typescript
Last synced: 8 months ago
JSON representation
My solution to ryoppippi/Gasyori100knock
- Host: GitHub
- URL: https://github.com/kitsuyaazuma/image-processing-100
- Owner: kitsuyaazuma
- Created: 2022-12-22T17:54:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-06T07:13:16.000Z (almost 3 years ago)
- Last Synced: 2025-05-05T14:02:22.762Z (8 months ago)
- Topics: docker-compose, fastapi, mantine-ui, nextjs, python3, react, typescript
- Language: Python
- Homepage: https://image-processing-100.vercel.app/
- Size: 868 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> # コードレビューをしてくださる方へ
>
> 単体でPythonプログラムの実行をしたい場合は、`/backend/`ディレクトリで下記の**Backend**の設定のうち、Fast APIサーバーを起動する`uvicorn ~`以外を行っていただきたいです。
>
> `/backend/routers/q1_10/q7.py`のようにファイル分けされているので、該当ディレクトリに移動して`python q7.py`のようにコマンドで実行できます。
# Image Processing 100 Questions
My solution to [ryoppippi/Gasyori100knock](https://github.com/ryoppippi/Gasyori100knock)

Demo URL : https://image-processing-100.vercel.app
# Docker (Frontend + Backend)
[](https://skillicons.dev)
```bash
docker-compose up
```
Then, visit the following url: http://localhost:3000
# Non-Docker
## Frontend
[](https://skillicons.dev)
```bash
cd frontend
yarn install
yarn dev
```
## Backend
[](https://skillicons.dev)
```bash
cd backend
python -m venv venv
# (Recommended) Switch Python version to 3.9.xx
pyenv install 3.9.13
pyenv local 3.9.13
# Mac
. venv/bin/activate
# Windows (PowerShell)
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
.\venv\Scripts\Activate.ps1
pip install -r requirements.txt
uvicorn main:app --host 0.0.0.0 --port 8000 --reload
```