Compare commits
2 Commits
0.01
...
17a96da078
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
17a96da078 | ||
|
|
ced9aa4aeb |
5
.agent/rules.md
Normal file
5
.agent/rules.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Antigravity Agent Configuration
|
||||||
|
# This file provides global rules for the Antigravity agent when working on this repository.
|
||||||
|
|
||||||
|
- **Git Commits**: When making git commits, always append the following co-author trailer to the end of the commit message to indicate AI assistance:
|
||||||
|
`Co-authored-by: Antigravity <antigravity@deepmind.com>`
|
||||||
@@ -25,3 +25,7 @@ Once a tech stack is chosen and implementation begins, update this file with:
|
|||||||
- Build, test, and lint commands
|
- Build, test, and lint commands
|
||||||
- Architecture overview
|
- Architecture overview
|
||||||
- Development setup instructions
|
- Development setup instructions
|
||||||
|
|
||||||
|
## Git Commits
|
||||||
|
|
||||||
|
When making git commits, always append yourself as co-author trailer to the end of the commit message to indicate AI assistance
|
||||||
6
Makefile
6
Makefile
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: help fees match web image
|
.PHONY: help fees match web image run
|
||||||
|
|
||||||
export PYTHONPATH := scripts:$(PYTHONPATH)
|
export PYTHONPATH := scripts:$(PYTHONPATH)
|
||||||
VENV := .venv
|
VENV := .venv
|
||||||
@@ -14,6 +14,7 @@ help:
|
|||||||
@echo " make match - Match Fio bank payments against expected attendance fees"
|
@echo " make match - Match Fio bank payments against expected attendance fees"
|
||||||
@echo " make web - Start a dynamic web dashboard locally"
|
@echo " make web - Start a dynamic web dashboard locally"
|
||||||
@echo " make image - Build an OCI container image"
|
@echo " make image - Build an OCI container image"
|
||||||
|
@echo " make run - Run the built Docker image locally"
|
||||||
|
|
||||||
fees: $(PYTHON)
|
fees: $(PYTHON)
|
||||||
$(PYTHON) scripts/calculate_fees.py
|
$(PYTHON) scripts/calculate_fees.py
|
||||||
@@ -26,3 +27,6 @@ web: $(PYTHON)
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
docker build -t fuj-management:latest -f build/Dockerfile .
|
docker build -t fuj-management:latest -f build/Dockerfile .
|
||||||
|
|
||||||
|
run:
|
||||||
|
docker run -it --rm -p 5001:5001 fuj-management:latest
|
||||||
|
|||||||
Reference in New Issue
Block a user