- Install Node with Node Version Manager:
- macOS, Linux, and WSL: https://github.com/nvm-sh/nvm
- WindowS: https://github.com/coreybutler/nvm-windows
After installing set your Node version to be "v12"
nvm install v12
nvm use v12
- Install dependencies.
# Execute *in* the project directory.
npm install
# Runs a development server!
npm run start
To test and develop authentication, you must run the panel over HTTPS.
To do so first configure the HTTPS proxy:
./configureHttps.sh
Next run the HTTPS proxy:
./runHttps.sh
Now the client is accessible over HTTPS at https://localhost:3003
as long as npm run start
is running.
# Build for production
npm run build