- Implemented a new skill to inspect and follow SHZ backend logs with bounded read-only commands. - Added scripts for viewing local and production logs, including options for following logs. - Created references for log locations and usage guidelines. feat: add query-shz-highgo skill for database querying - Introduced a skill to query the SHZ HighGo database through an SSH gateway using a read-only psql workflow. - Included scripts for executing SQL queries and schema discovery. - Added connection details and usage instructions. feat: add OutdoorFairBooth domain and mapper - Created OutdoorFairBooth domain model with relevant fields and annotations. - Implemented a mapper interface for physical deletion of records based on fair ID. feat: create SQL scripts for cms_outdoor_fair_booth - Added SQL script to create the cms_outdoor_fair_booth table and its associated sequence. - Included comments for clarity and compatibility with historical data. - Added a script to drop the cms_venue_booth table after migration confirmation.
57 lines
797 B
Plaintext
57 lines
797 B
Plaintext
######################################################################
|
|
# Build Tools
|
|
|
|
.gradle
|
|
/build/
|
|
!gradle/wrapper/gradle-wrapper.jar
|
|
|
|
target/
|
|
!.mvn/wrapper/maven-wrapper.jar
|
|
|
|
######################################################################
|
|
# IDE
|
|
|
|
### STS ###
|
|
.apt_generated
|
|
.classpath
|
|
.factorypath
|
|
.project
|
|
.settings
|
|
.springBeans
|
|
|
|
### IntelliJ IDEA ###
|
|
.idea
|
|
*.iws
|
|
*.iml
|
|
*.ipr
|
|
|
|
### JRebel ###
|
|
rebel.xml
|
|
|
|
### NetBeans ###
|
|
nbproject/private/
|
|
build/*
|
|
nbbuild/
|
|
dist/
|
|
nbdist/
|
|
.nb-gradle/
|
|
|
|
######################################################################
|
|
# Others
|
|
*.log
|
|
*.xml.versionsBackup
|
|
*.swp
|
|
|
|
!*/build/*.java
|
|
!*/build/*.html
|
|
!*/build/*.xml
|
|
.DS_Store
|
|
|
|
# Local credentials for project-scoped Codex skills
|
|
.codex/skills/*/.password
|
|
|
|
# Local application runtime files
|
|
.local/
|
|
|
|
local.sh
|