Open Source Finance Management Platform
Find a file
Chris Josten e0b260d487
Merge pull request #34 from finmars-platform/168-workflow-pagination
Replace ad-hoc pagination by FmPagination from finmars-ui
2026-02-10 16:37:45 +01:00
.github/workflows Remove arm platform from image 2025-08-15 06:08:59 +00:00
docker Add senty 2025-11-05 20:30:39 +00:00
src workflow(-template): Move data fetch from onMounted to useAsyncData 2026-02-10 15:01:09 +01:00
tailwind update styles 2025-07-02 16:10:04 +02:00
.editorconfig Initial commit 2024-10-07 23:01:25 +02:00
.gitignore Initial commit 2024-10-07 23:01:25 +02:00
.gitlab-ci.yml update registry 2025-02-26 15:17:10 +05:00
CLA.md Create CLA.md 2025-06-13 15:54:30 +02:00
CONTRIBUTING.md Update CONTRIBUTING.md 2025-06-13 15:55:04 +02:00
Dockerfile update dockerfile 2025-07-01 21:05:37 +02:00
LICENSE.md Create LICENSE.md 2025-04-29 23:41:58 +02:00
nuxt.config.ts Add senty 2025-11-05 20:30:39 +00:00
package-lock.json Add senty 2025-11-05 20:30:39 +00:00
package.json Add senty 2025-11-05 20:30:39 +00:00
README.md README: specify setting COMMUNITY_EDITION in .env 2026-02-02 11:28:13 +01:00
tailwind.config.js update styles 2025-07-02 16:10:04 +02:00
tsconfig.json Initial commit 2024-10-07 23:01:25 +02:00

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.