├── .cursor └── rules │ ├── dopeness-rule.mdc │ └── snake-theme.mdc ├── .gitignore ├── GAMEPLAY.md ├── README.md ├── backend ├── .python-version ├── README.md ├── hello.py ├── main.py ├── pyproject.toml ├── requirements-no-rust.txt ├── requirements-vercel.txt ├── requirements.txt ├── uv.lock ├── vercel.json └── vercel_app.py ├── deploy.ps1 ├── deploy.sh ├── frontend ├── package-lock.json ├── package.json ├── public │ ├── index.html │ └── manifest.json └── src │ ├── App.css │ ├── App.js │ ├── components │ ├── EndScreen.js │ ├── SnakeGame.js │ └── StartScreen.js │ ├── index.js │ └── reportWebVitals.js ├── setup.ps1 ├── setup.sh └── vercel.json /.cursor/rules/dopeness-rule.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/.cursor/rules/dopeness-rule.mdc -------------------------------------------------------------------------------- /.cursor/rules/snake-theme.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/.cursor/rules/snake-theme.mdc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/.gitignore -------------------------------------------------------------------------------- /GAMEPLAY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/GAMEPLAY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/README.md -------------------------------------------------------------------------------- /backend/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/backend/hello.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/backend/pyproject.toml -------------------------------------------------------------------------------- /backend/requirements-no-rust.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/backend/requirements-no-rust.txt -------------------------------------------------------------------------------- /backend/requirements-vercel.txt: -------------------------------------------------------------------------------- 1 | fastapi==0.104.1 2 | uvicorn==0.23.2 3 | pydantic==2.4.2 -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/backend/uv.lock -------------------------------------------------------------------------------- /backend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/backend/vercel.json -------------------------------------------------------------------------------- /backend/vercel_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/backend/vercel_app.py -------------------------------------------------------------------------------- /deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/deploy.ps1 -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/deploy.sh -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/components/EndScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/src/components/EndScreen.js -------------------------------------------------------------------------------- /frontend/src/components/SnakeGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/src/components/SnakeGame.js -------------------------------------------------------------------------------- /frontend/src/components/StartScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/src/components/StartScreen.js -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/setup.ps1 -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/setup.sh -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Vibe-Coding-With-Cursor/HEAD/vercel.json --------------------------------------------------------------------------------