34 lines
879 B
Markdown
34 lines
879 B
Markdown
# Neon Reactor Code App
|
|
|
|
Arcade-style Power Apps Code App proof of concept for pipeline validation.
|
|
|
|
## What This POC Demonstrates
|
|
|
|
- A complete React + TypeScript Code App with no external data connections.
|
|
- Fast iteration UI suitable for demos (mini reflex game).
|
|
- CI/CD behavior for create/reuse deployment:
|
|
- if appId is null in power.config.json, push creates a new app
|
|
- if appId has a value, push reuses that app
|
|
|
|
## Gameplay
|
|
|
|
- You have 30 seconds per round.
|
|
- Hit cyan targets for points.
|
|
- Avoid magenta traps (they reduce score and break combo).
|
|
- Track recent scores and best score.
|
|
|
|
## Local Commands
|
|
|
|
```bash
|
|
npm ci
|
|
npm run dev
|
|
npm run build
|
|
pac code push
|
|
```
|
|
|
|
## Deployment Notes
|
|
|
|
- This folder is intended to be the active Code App root for CI.
|
|
- The pipeline should run commands from this directory.
|
|
- power.config.json controls appId create/reuse behavior.
|