Skip to content

Commit

Permalink
Init: ddrawry 초기 개발환경 세팅
Browse files Browse the repository at this point in the history
  • Loading branch information
newbission committed Aug 29, 2024
0 parents commit 1e83563
Show file tree
Hide file tree
Showing 4 changed files with 342 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.idea
.ipynb_checkpoints
.mypy_cache
.vscode
__pycache__
.pytest_cache
htmlcov
dist
site
.coverage*
coverage.xml
.netlify
test.db
log.txt
Pipfile.lock
env3.*
env
docs_build
site_build
venv
docs.zip
archive.zip

# vim temporary files
*~
.*.sw?
.cache

# macOS
.DS_Store

# pyenv
.python-version
9 changes: 9 additions & 0 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# app/main.py
from fastapi import FastAPI

app = FastAPI()


@app.get("/")
def read_root():
return {"DDRAWRY": "This is ddrawry's API server"}
Loading

0 comments on commit 1e83563

Please sign in to comment.