Skip to content

Commit df63c3a

Browse files
committed
Initial structure for project
0 parents  commit df63c3a

File tree

20 files changed

+83
-0
lines changed

20 files changed

+83
-0
lines changed

.github/workflows/ci.yml

Whitespace-only changes.

.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
*.egg
7+
*.egg-info/
8+
dist/
9+
build/
10+
.dist/
11+
12+
# Virtual Environments
13+
venv/
14+
.venv/
15+
env/
16+
ENV/
17+
env.bak/
18+
venv.bak/
19+
20+
# Environment Variables
21+
.env
22+
.env.local
23+
.env.*.local
24+
*.env
25+
26+
# IDE
27+
.idea/
28+
.vscode/
29+
*.swp
30+
*.swo
31+
*~
32+
.DS_Store
33+
34+
# Testing
35+
.pytest_cache/
36+
.coverage
37+
htmlcov/
38+
.tox/
39+
*.cover
40+
.hypothesis/
41+
42+
# Logs
43+
*.log
44+
logs/
45+
46+
# Docker
47+
docker-compose.override.yml
48+
49+
# OS
50+
Thumbs.db
51+
.DS_Store
52+
53+
# Database
54+
*.db
55+
*.sqlite
56+
*.sqlite3
57+
58+
# Secrets and configs (if any)
59+
secrets/
60+
*.pem
61+
*.key
62+
*.crt
63+
64+
# Kubernetes
65+
*.kubeconfig
66+
kubeconfig
67+
68+
# Type checking
69+
.mypy_cache/
70+
.dmypy.json
71+
dmypy.json

README.md

Whitespace-only changes.

backend/Dockerfile

Whitespace-only changes.

backend/app/__init__.py

Whitespace-only changes.

backend/app/api/__init__.py

Whitespace-only changes.

backend/app/api/routes/events.py

Whitespace-only changes.

backend/app/core/config.py

Whitespace-only changes.

backend/app/core/logging.py

Whitespace-only changes.

backend/app/main.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from fastapi import FastAPI
2+
3+
app = FastAPI(title="EventRelay")
4+
5+
@app.get("/health")
6+
def health():
7+
return {"status": "ok"}

0 commit comments

Comments
 (0)