Once the server is running, you can rebuild just the web app via make webapp in a separate terminal window. Reload your browser to see the changes. Building and running standalone desktop apps You can build standalone apps that package the server to run locally against SQLite: Windows: Req...
Windows (cmd.exe) set REACT_APP_SECRET_CODE=abcdef&&npm start (Note: the lack of whitespace is intentional.) Linux, macOS (Bash) REACT_APP_SECRET_CODE=abcdef npm start Adding Development Environment Variables In .env Note: this feature is available with react-scripts@0.5.0 and higher. To...