A project management app derived from Mind-Vision-Code
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Daniel Covington 5fabe4b49c Add request and response flow chart 2 주 전
app Build Project Compass project management app 2 주 전
config init 2 주 전
core Build Project Compass project management app 2 주 전
database Build Project Compass project management app 2 주 전
docs Add request and response flow chart 2 주 전
public Build Project Compass project management app 2 주 전
routes Build Project Compass project management app 2 주 전
scripts Build Project Compass project management app 2 주 전
tests Build Project Compass project management app 2 주 전
.gitignore init 2 주 전
AGENTS.md init 2 주 전
README.md Add request and response flow chart 2 주 전
autoload.php Build Project Compass project management app 2 주 전
composer.json Build Project Compass project management app 2 주 전
composer.lock init 2 주 전

README.md

Project Compass

Project Compass is a project-management app built on a small PHP MVC framework.

Features

  • portfolio dashboard
  • project cards with progress, budget, and risk status
  • Kanban-style project boards
  • task creation and status changes
  • activity feed
  • SQLite storage with migrations and seed data

Run locally

php scripts/migrate.php up
php scripts/seed_projects.php --reset
php -S localhost:8000 -t public

Then open:

http://localhost:8000/

Useful routes

  • / — dashboard
  • /projects — project index
  • /projects/create — new project form
  • /projects/{id} — project board
  • /activity — activity feed

CLI helpers

php scripts/migrate.php status
php scripts/migrate.php fresh --seed
php scripts/seed_projects.php 6

Framework flow

See docs/REQUEST_FLOW.md for a chart of how requests and responses move through the framework.

Powered by TurnKey Linux.