|
1 |
| -# vue3-starter |
| 1 | +### Installation |
2 | 2 |
|
3 |
| -## Project setup |
4 |
| -``` |
| 3 | +```console |
5 | 4 | npm install
|
6 |
| -``` |
7 |
| - |
8 |
| -### Compiles and hot-reloads for development |
9 |
| -``` |
| 5 | +cp .env.example .env |
10 | 6 | npm run serve
|
11 | 7 | ```
|
12 | 8 |
|
13 |
| -### Compiles and minifies for production |
14 |
| -``` |
15 |
| -npm run build |
16 |
| -``` |
| 9 | +# Vue 3 Starter |
17 | 10 |
|
18 |
| -### Run your unit tests |
19 |
| -``` |
20 |
| -npm run test:unit |
21 |
| -``` |
| 11 | +This is a starter project for [Vue Js](https://vuejs.org/). |
22 | 12 |
|
23 |
| -### Lints and fixes files |
24 |
| -``` |
25 |
| -npm run lint |
26 |
| -``` |
| 13 | +The project is helpful to start your next project, as it provides a lot of the common tools you may reach for, all ready to go. |
| 14 | + |
| 15 | +### Features |
| 16 | + |
| 17 | +- TypeScript Included. |
| 18 | +- Base pages (like Dashboard/404 etc). |
| 19 | +- Pre-configured with CSS-in-JS styling. |
| 20 | +- Pre-configured with code quality tools: ESLint, Prettier, TypeScript, Jest, etc. |
| 21 | +- Basic tests included. |
| 22 | +- (Admin Kit)[https://github.com/adminkit/adminkit] included. |
| 23 | + |
| 24 | +### Directory Structure |
| 25 | + |
| 26 | +| Name | Description | |
| 27 | +| --------------------------------- | ----------- | |
| 28 | +| **build/** | Compiled source files will be placed here. | |
| 29 | +| **public/** | Static assets (fonts, css, js, img). | |
| 30 | +| **src/** | Source files. | |
| 31 | +| **src/components** | Vue components including shared (common) components. | |
| 32 | +| **src/layouts** | Dynamic Layout Components. | |
| 33 | +| **src/modules** | Views - screen components. | |
| 34 | +| **src/routes** | Application routes. | |
| 35 | +| **src/store** | Vuex state management. | |
| 36 | + |
| 37 | +### Requirements |
| 38 | + |
| 39 | +- [Node.js](https://nodejs.org/) v14 or newer. |
| 40 | + |
| 41 | +### Installation |
| 42 | + |
| 43 | +- Clone the repo - `git clone https://github.com/kutia-software-company/vue3-starter`. |
| 44 | +- Install project dependencies — `npm install`. |
| 45 | +- Create `.env` file - `cp .env.example .env`. |
| 46 | +- Launch the app — `npm run dev`, it will become available at [http://localhost:3000](http://localhost:3000/). |
| 47 | + |
| 48 | +### Available Scripts |
| 49 | + |
| 50 | +- `dev` |
| 51 | +- `build` |
| 52 | +- `test:unit` |
| 53 | +- `code:format` |
| 54 | +- `code:check` |
| 55 | + |
| 56 | +### Related Projects |
| 57 | + |
| 58 | +- [Node.js TypeScript API Starter](https://github.com/kutia-software-company/express-typescript-starter). |
| 59 | +- [Node.js TypeScript API Starter](https://github.com/kutia-software-company/react-js-starter). |
| 60 | + |
| 61 | +### License |
| 62 | + |
| 63 | +[MIT](LICENSE). |
| 64 | + |
| 65 | +--- |
27 | 66 |
|
28 |
| -### Customize configuration |
29 |
| -See [Configuration Reference](https://cli.vuejs.org/config/). |
| 67 | +<sup>Made with ♥ by Gentrit Abazi ([@gentritabazi01](https://github.com/gentritabazi01)).</sup> |
0 commit comments