mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-26 13:02:50 +00:00
README.md line 72 says `cp .env.example .env`, but no such file existed and .gitignore's `.env.*` rule would have swallowed it — hence the explicit negation alongside it. Documents the two variables the code actually reads, VITE_BASE_API_URL and VITE_USE_MOCKS, rather than the longer list in the README, none of which is referenced anywhere in apps/ or libs/. Notes that Vite resolves this from the workspace root via envDir, and that Fayda needs nothing here beyond the callback path matching the API's FAYDA_REDIRECT_URI.
39 lines
491 B
Plaintext
39 lines
491 B
Plaintext
# dependencies
|
|
node_modules/
|
|
|
|
.nx
|
|
# build output
|
|
**/dist/
|
|
.next/
|
|
.nx/
|
|
coverage/
|
|
*.tsbuildinfo
|
|
**/*.tsbuildinfo
|
|
|
|
# env
|
|
.env
|
|
.env.*
|
|
# ...but the checked-in template must survive that rule.
|
|
!.env.example
|
|
|
|
# logs
|
|
*.log
|
|
|
|
# OS/editor
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
.claude/
|
|
.npmrc
|
|
|
|
.nx
|
|
|
|
apps/backoffice/public/_um/
|
|
apps/backoffice/public/tinymce/
|
|
local-packages/iamui-extracted/
|
|
|
|
|
|
# Playwright visual-regression artifacts (baselines under apps/e2e/visual are tracked)
|
|
test-results/
|
|
dist/visual-report/
|