You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Edit data/environments.json with your Dataverse environment URLs and IDs
34
36
35
-
# Start the backend server
36
-
npm start
37
+
# Set up local environment variables (optional for local dev)
38
+
copy .env.example .env.local
39
+
# Edit .env.local with your credentials if testing real Dataverse connections
37
40
38
-
# In a separate terminal, start the frontend
39
-
cd src/frontend
40
-
npm install
41
-
npm start
41
+
# Start both backend and frontend servers
42
+
npm run dev
42
43
```
43
44
44
-
The backend will be available at `http://localhost:8080` and the frontend wizard at `http://localhost:3003/wizard`.
45
+
The backend will be available at `http://localhost:8080` and the frontend wizard at `http://localhost:3003`.
46
+
47
+
> **Note**: Authentication is disabled by default in development mode (`AUTH_ENABLED=false`), so you can test the UI without Azure AD credentials. Configure `data/environments.json` to enable multi-environment features.
0 commit comments