Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kitsuya0828/image-processing-100
My solution to ryoppippi/Gasyori100knock
https://github.com/kitsuya0828/image-processing-100
docker-compose fastapi mantine-ui nextjs python3 react typescript
Last synced: 2 days ago
JSON representation
My solution to ryoppippi/Gasyori100knock
- Host: GitHub
- URL: https://github.com/kitsuya0828/image-processing-100
- Owner: kitsuya0828
- Created: 2022-12-22T17:54:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-06T07:13:16.000Z (almost 2 years ago)
- Last Synced: 2024-12-17T19:30:16.842Z (about 2 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)
[![Docker](https://skillicons.dev/icons?i=docker)](https://skillicons.dev)
```bash
docker-compose up
```
Then, visit the following url: http://localhost:3000# Non-Docker
## Frontend
[![Frontend](https://skillicons.dev/icons?i=react,ts,next,)](https://skillicons.dev)
```bash
cd frontend
yarn install
yarn dev
```## Backend
[![Backend](https://skillicons.dev/icons?i=python,fastapi)](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.ps1pip install -r requirements.txt
uvicorn main:app --host 0.0.0.0 --port 8000 --reload
```