Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anatoly-semenov/insurances-frontend
Nuxt 3 | frontend app with CRM for insurances products
https://github.com/anatoly-semenov/insurances-frontend
composition-api matomo pinia unleash vue3 vueuse
Last synced: 6 days ago
JSON representation
Nuxt 3 | frontend app with CRM for insurances products
- Host: GitHub
- URL: https://github.com/anatoly-semenov/insurances-frontend
- Owner: Anatoly-Semenov
- Created: 2024-08-18T11:13:37.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-08-18T11:46:06.000Z (3 months ago)
- Last Synced: 2024-10-12T18:12:07.221Z (about 1 month ago)
- Topics: composition-api, matomo, pinia, unleash, vue3, vueuse
- Language: TypeScript
- Homepage: https://nuxt.com
- Size: 1.71 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# INSURANCES-FRONTEND
# Development with technology `Nuxt 3`
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install
```## Development Server
Start the development server on http://localhost:3000
```bash
yarn dev
```
---## Production
Build the application for production:
```bash
yarn build
```Start the application for production:
```bash
yarn start
```---
Locally preview production build:
```bash
yarn preview
```Generate static files:
```bash
yarn generate
```---
## Environment
> Environment variables are stored in the directory ./config/.env.{env}
> To define the deployment environment, you need to initialize the variable `APP_ENV` = `dev` | `staging` | `prod` in .env file on root directory
```dotenv
APP_ENV=dev
```