mirror of
https://github.com/finmars-platform/finmars-workflow-portal.git
synced 2026-04-26 22:45:49 +03:00
Open Source Finance Management Platform
|
|
||
|---|---|---|
| .github/workflows | ||
| docker | ||
| src | ||
| tailwind | ||
| .editorconfig | ||
| .gitignore | ||
| .gitlab-ci.yml | ||
| CLA.md | ||
| CONTRIBUTING.md | ||
| Dockerfile | ||
| LICENSE.md | ||
| nuxt.config.ts | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tailwind.config.js | ||
| tsconfig.json | ||
Nuxt 3 Minimal Starter
Look at the nuxt 3 documentation to learn more.
Setup
Make sure to install the dependencies:
# npm
npm install
Development Server
Start the development server on http://localhost:3000
Create file .env in project's root directory.
.env example:
KEYCLOAK_URL='https://stage-auth.finmars.com'
KEYCLOAK_REALM='finmars'
KEYCLOAK_CLIENT_ID='finmars'
APP_HOST='http://localhost:3000/v'
API_HOST='https://stage.finmars.com'
AUTH_HOST='https://stage.finmars.com/authorizer'
EDITION_TYPE='community'
OLD_APP_URL='http://0.0.0.0:8080/#!/'
NUXT_HOST='localhost'
Run command:
npm run dev
Production
Build the application for production:
npm run build
Locally preview production build:
npm run preview
Checkout the deployment documentation for more information.