Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```