Skip to content

Commit ecf59bd

Browse files
allow website action to be run in github manually
1 parent 9352a5d commit ecf59bd

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/visualgit-website.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
types: [opened, synchronize, reopened, closed]
99
branches:
1010
- main
11+
workflow_dispatch:
1112

1213
jobs:
1314
build_and_deploy_job:

claude.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Visual Git Project - Development Notes
2+
3+
## Git Operations
4+
5+
**IMPORTANT**: Use `tgit` instead of `git` for all git operations in this repository.
6+
7+
```bash
8+
# Use this:
9+
tgit status
10+
tgit add .
11+
tgit commit -m "message"
12+
tgit push
13+
14+
# Not this:
15+
git status #
16+
```
17+
18+
## Project Structure
19+
20+
- `/cli` - Command line application (C# .NET)
21+
- `/web` - Website (Astro framework)
22+
- `/api` - Backend API (C# .NET)
23+
24+
## Additional Documentation
25+
26+
- See [web/claude.md](web/claude.md) for website-specific development notes (mimic.css workflow, styling conventions)

0 commit comments

Comments
 (0)