docs/wiki/2.11-Run-the-Development-Server.md
How to run Super Productivity locally for development, or in GitHub Codespaces.
git clone https://github.com/super-productivity/super-productivity.git
cd super-productivity
npm i -g @angular/cli
npm i
npm run env
npm run env creates or updates the environment file once; re-run if you add or change variables.
ng serve
Open http://127.0.0.1:4200. For most UI and frontend work this is enough. Redux DevTools work in the browser.
ng serve
In a second terminal:
npm start
The Electron window will load the dev server.
VS Code settings sync in the codespace. To change the dev environment, edit .devcontainers/devcontainers.json per Codespaces documentation.