Initial commit — Electron + React frontend, Express/Docker backend, members & project management

This commit is contained in:
Ryan Lancaster
2026-03-15 13:40:01 -07:00
commit a3949c32ee
24 changed files with 12583 additions and 0 deletions

31
frontend/README.md Normal file
View File

@@ -0,0 +1,31 @@
Build instructions (macOS)
1. Install deps:
```bash
cd "$(pwd)/frontend"
npm install
```
2. Build the app (Vite):
```bash
npm run build
```
3. Copy the build into the Electron app root (overwrite `dist/`):
```bash
# from project root
cp -R frontend/dist/* ./dist/
```
4. Start Electron:
```bash
npm start
```
Notes
- Ensure `vite` and `@vitejs/plugin-react` are in `frontend/package.json` devDependencies.
- If your frontend source is in a different folder, place `vite.config.js` next to that source or update the path above.