Skip to content
Merged
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
22 changes: 22 additions & 0 deletions GEMINI.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,25 @@ When asked to fix or check formatting/linting issues, or before committing code
```bash
npm run format && composer lint && npm run lint
```

## Git Workflow & Push
When asked to push:
1. Always create a new branch from `main` (pulling the latest changes first):
```bash
git checkout main && git pull origin main && git checkout -b <new-branch>
```
2. Switch to that branch.
3. Use atomic commits where applicable.
4. Run formatting and linting checks before committing:
```bash
npm run format && composer lint && npm run lint
```
5. Never force push (`--force` or `-f`).
6. Push the branch to the remote repository:
```bash
git push -u origin <new-branch>
```
7. Create a Pull Request (PR) with a clear, respective title and description linking relevant issues.



2 changes: 1 addition & 1 deletion resources/views/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
} catch (_) {}
})();
</script>
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover, interactive-widget=overlays-content">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="color-scheme" content="light dark">
{{-- Browser chrome: top status bar + bottom nav bar (Chrome / Edge / Samsung Internet) --}}
Expand Down