27 lines
789 B
Markdown
27 lines
789 B
Markdown
# Suggested Commands
|
|
|
|
## System (Windows with Git Bash)
|
|
- `git` - version control
|
|
- `ls`, `cd`, `grep`, `find` - standard Unix utils via Git Bash
|
|
|
|
## Development
|
|
- No build system or package manager (no Composer, no npm)
|
|
- PHP files are edited directly and served by Apache
|
|
- SCSS needs manual compilation for admin styles (`admin/layout/style-scss/style.scss`)
|
|
|
|
## Testing
|
|
- No automated test framework detected
|
|
- Manual testing via browser
|
|
|
|
## Deployment
|
|
- FTP-based deployment (`.vscode/ftp-kr.sync.cache.json` in gitignore suggests VS Code FTP extension)
|
|
|
|
## Cron
|
|
- `cron.php` - main cron entry point
|
|
- `cron-turstmate.php` - Trustmate integration cron
|
|
|
|
## Notes
|
|
- No linter or formatter configured
|
|
- No CI/CD pipeline detected
|
|
- Changes are tested manually on the live/staging server
|