-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/Uni-dthon/mirisa_server
- Loading branch information
Showing
4 changed files
with
91 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: CI/CD for FastAPI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' # Use the version you need | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
- name: EC2로 SSH 접속하여 git pull | ||
env: | ||
SSH_PRIVATE_KEY: ${{ secrets.EC2_SSH_KEY }} | ||
EC2_USER: 'ubuntu' | ||
EC2_HOST: 'ec2-3-38-23-48.ap-northeast-2.compute.amazonaws.com' | ||
run: | | ||
# 개인 키를 파일에 저장 | ||
echo "${SSH_PRIVATE_KEY}" > private_key | ||
chmod 600 private_key | ||
# EC2 인스턴스에 SSH 접속하여 git pull 실행 | ||
ssh -i private_key -o StrictHostKeyChecking=no $EC2_USER@$EC2_HOST 'cd ~/mirisa_server && git pull origin main' | ||
- name: Restart the FastAPI application | ||
env: | ||
SSH_PRIVATE_KEY: ${{ secrets.EC2_SSH_KEY }} | ||
EC2_USER: 'ubuntu' | ||
EC2_HOST: 'your_ec2_ip' | ||
run: | | ||
echo "${SSH_PRIVATE_KEY}" > private_key | ||
chmod 600 private_key | ||
ssh -i private_key $EC2_USER@$EC2_HOST 'sudo lsof -t -i :1500 | xargs sudo kill -9 && screen -S server -X stuff "source myenv/bin/activate\n" && screen -S server -X stuff "cd mirisa_server/\n" && screen -S server -X stuff "python3 main.py\n"' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
from pydantic import BaseModel | ||
|
||
class User(BaseModel): | ||
user_id : int | ||
class UserBase(BaseModel): | ||
name : str | ||
password : str | ||
|
||
class UserRead(User): | ||
class UserRead(UserBase): | ||
user_id : str | ||
|
||
class UserCreate(UserBase): | ||
pass | ||
|
||
class UserCreate(User): | ||
class LoginUser(UserBase): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
from fastapi.responses import JSONResponse | ||
|
||
from Data.user import LoginUser, UserCreate | ||
from Database.database import get_db | ||
from fastapi import APIRouter | ||
from starlette.status import * | ||
from fastapi import Query, Request | ||
from Database.models import User | ||
from Service.useritem_service import UserItemService | ||
|
||
|
||
router = APIRouter(tags=["login"], prefix="/login") | ||
|
||
|
||
@router.post("/signup") | ||
def signup(request: Request, userCreate: UserCreate): | ||
user = User( | ||
name=userCreate.name, | ||
password=userCreate.password | ||
) | ||
with get_db() as db: | ||
db.add(user) | ||
db.commit() | ||
db.refresh(user) | ||
|
||
UserItemService.init_userItem(user.user_id) | ||
return JSONResponse(status_code=HTTP_200_OK, content={"message": "User added successfully"}) | ||
|
||
|
||
@router.post("/signin") | ||
def signin(request: Request, user: LoginUser): | ||
with get_db() as db: | ||
user = db.query(User).filter(User.name == user.name).first() | ||
if user is None: | ||
return JSONResponse(status_code=HTTP_204_NO_CONTENT, content={"message": "User not found"}) | ||
|
||
return JSONResponse(status_code=HTTP_200_OK, content={"message": "User signed in successfully", "user_id": user.user_id}) |