backend init

This commit is contained in:
Josh LaCount 2026-05-16 19:50:14 -04:00
commit cd3d0f4ad8
6 changed files with 18 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
__pycache__/
.env

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# Beat Saber Map Finder
Find Beat Saber maps for songs you like

1
backend/.python-version Normal file
View File

@ -0,0 +1 @@
3.14

0
backend/README.md Normal file
View File

6
backend/main.py Normal file
View File

@ -0,0 +1,6 @@
def main():
print("Hello from backend!")
if __name__ == "__main__":
main()

7
backend/pyproject.toml Normal file
View File

@ -0,0 +1,7 @@
[project]
name = "bsmf-backend"
version = "0.1.0"
description = "Backend server for Beat Saber Map Finder"
readme = "README.md"
requires-python = ">=3.14"
dependencies = []