Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions Qfire-RPI-Quantum-Hackathon--master/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# OS / editor
.DS_Store
Thumbs.db
.vscode/
.idea/

# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
.venv/
venv/
env/

# Backend env / local data
Backend/.env
Backend/*.db
Backend/*.sqlite
Backend/*.sqlite3
Backend/quantumproj.db

# Node / frontend
Frontend/node_modules/
Frontend/dist/
Frontend/.vite/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Build / cache
*.log
*.tmp
*.temp
23 changes: 23 additions & 0 deletions Qfire-RPI-Quantum-Hackathon--master/Backend/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# QuantumProj backend environment

# Optional SQLite override. If omitted, Backend/quantumproj.db is used.
QUANTUMPROJ_DB_PATH=Backend/quantumproj.db

# qBraid
# Leave blank to run in simulator-only mode without authenticated qBraid services.
QBRAID_API_KEY=

# IBM Quantum Runtime
# Leave blank to keep the platform in simulator-only mode.
QISKIT_IBM_TOKEN=
# Optional IBM instance / CRN-style target.
# Channel is intentionally omitted from the MVP template because the backend can
# connect with token + instance when the account is set up correctly.
QISKIT_IBM_INSTANCE=

# Optional comma-separated CORS origins override
# CORS_ORIGINS=http://localhost:5173,http://127.0.0.1:5173

# Reserved for future auth work
# GOOGLE_CLIENT_ID=
# JWT_SECRET=change-me
Loading