Google Cloud: Jota Google Calendar.

http://127.0.0.1:5178/events

JOTA´S GOOGLE CALENDAR: https://chatgpt.com/c/6a0b9209-054c-83e9-ba04-a93cb97c4da9

To make `http://127.0.0.1:5178/create` work, the server must be running on port 5178.

 

1) Open **PowerShell** and run:
«`powershell

..   .cd «D:\Codex Projects\jota-calendar-backoffice» …
…  $env:PORT=»5178″  …
…  $env:OAUTH_REDIRECT_URI=»http://127.0.0.1:5178/oauth/callback»  …
…  $env:GOOGLE_CLIENT_ID=»YOUR_CLIENT_ID»  …
…  $env:GOOGLE_CLIENT_SECRET=»YOUR_CLIENT_SECRET»  …
npm run dev  …

2) Keep that window open. You should see:
– `Jota backoffice running: http://127.0.0.1:5178/`

3) Then open:
– `http://127.0.0.1:5178/create`

If you get “address already in use” for 5178, run:
«`powershell
netstat -ano | findstr :5178
«`
Then kill the PID it shows:
«`powershell
taskkill /PID <PID> /F
«`
…and rerun `npm run dev`.