Copy git clone https://github.com/coauth/coauth-core.git
cd coauth-core
Copy cd core-api-gateway
export MODULE_REGISTRY_SERVICE = 'http://localhost:8082'
export AUTH_GUARD_SERVICE = 'http://localhost:8081/core/auth-guard'
export MODULE_TOTP_SERVICE = 'http://localhost:8083'
export MODULE_RECONFIRM_SERVICE = 'http://localhost:8085'
export UI_PLUGIN_SERVICE = 'http://localhost:3000'
export EXAMPLE_APP_SERVICE = 'http://localhost:8084'
./mvnw spring-boot:run --define spring-boot.run.profiles=dev
Copy cd core-auth-guard
export POSTGRESQL_USER = 'postgres'
export POSTGRESQL_PASSWORD = 'postgres'
./mvnw compile quarkus:dev
Copy cd core-module-registry
export POSTGRESQL_USER = 'postgres'
export POSTGRESQL_PASSWORD = 'postgres'
export INFINISPAN_USER = 'admin'
export INFINISPAN_PASSWORD = 'password'
./mvnw compile quarkus:dev
Copy cd coauth-module-totp
export POSTGRESQL_USER = 'postgres'
export POSTGRESQL_PASSWORD = 'postgres'
export INFINISPAN_USER = 'admin'
export INFINISPAN_PASSWORD = 'password'
./mvnw compile quarkus:dev
Copy cd coauth-module-reconfirm
export POSTGRESQL_USER = 'postgres'
export POSTGRESQL_PASSWORD = 'postgres'
export INFINISPAN_USER = 'admin'
export INFINISPAN_PASSWORD = 'password'
./mvnw compile quarkus:dev
Copy git clone https://github.com/coauth/coauth-plugin-web.git
cd coauth-plugin-web
npm install
npm run dev
Copy git clone https://github.com/coauth/example-quarkus-vue.git
cd example-quarkus-vue
export COAUTH_GATEWAY_URL = http://localhost:8080
./mvnw compile quarkus:dev
cd src/main/webapp
npm install
npm run dev
Copy git clone https://github.com/coauth/coauth-management.git
cd coauth-management/coauth-management-ui
npm install
npm run dev