> For the complete documentation index, see [llms.txt](https://helpdocs.quickadminpanel.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://helpdocs.quickadminpanel.com/vue.js-generator-version/installing-downloaded-vue-panel.md).

# Installing Downloaded Vue.js+Laravel Panel

## Installation Commands

After unarchiving the ZIP file into the folder you prepared for your project, here's a sequence of Terminal commands you need to run (short version):

```
cp .env.example .env
vi .env

composer install

php artisan key:generate

php artisan migrate --seed

npm install
npm run dev
```

We have a much more detailed guide for non-Vue Laravel version of QuickAdminPanel: [Download Code and Install on Your Web-Server](https://helpdocs.quickadminpanel.com/using-generated-code/download-code-and-install-your-web-server). Most of that guide is applicable for Vue version, but additionally, you need to run Vue-related commands:

```
npm install
npm run dev
```

## Configuring Laravel Sanctum Domains

We're using [Laravel Sanctum](https://laravel.com/docs/8.x/sanctum) for API Authentication.

So, if your URL for the project is NOT **<http://localhost>**, then add your domain into **.env** file variable **SANCTUM\_STATEFUL\_DOMAINS**&#x20;

Example:

```
SANCTUM_STATEFUL_DOMAINS=myproject.test
```

**Important**: that **myproject.test** value should NOT contain any prefixes, and should be lowercase. So not **<http://myproject.test>**, and not **MyProject.test**&#x20;

{% hint style="warning" %}
Read more about Laravel Sanctum domains in [the official Laravel documentation](https://laravel.com/docs/8.x/sanctum#configuring-your-first-party-domains).
{% endhint %}

## Launching Project

If it's all successful, you should launch the homepage and see a login screen:

![](/files/-MGwi4bo3iLcfs_zx3D-)

Default credentials:\
\- Email: **<admin@admin.com>**\
\- Pass: **password**

After login, you can browse through menu items and you should see datatables like this one:

![](/files/-MGwiCCy-KVmcsNZR6hj)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://helpdocs.quickadminpanel.com/vue.js-generator-version/installing-downloaded-vue-panel.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
