11 lines
160 B
Bash
11 lines
160 B
Bash
|
# poetry install
|
||
|
|
||
|
# cd backend
|
||
|
# pip install -r requirement.txt
|
||
|
# uvicorn your_module:app --reload
|
||
|
|
||
|
# cd frontend
|
||
|
# npm install
|
||
|
# npm run dev
|
||
|
|
||
|
# localhost:3000
|