Skip to content

Commit 5cbc041

Browse files
Init
1 parent a4110d2 commit 5cbc041

36 files changed

+30261
-86
lines changed

.env.example

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
BACKEND_URL=http://api-example.com
1+
VUE_APP_NAME='App Name'
2+
VUE_APP_BACKEND_URL=http://api-example.com

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
node_modules
33
/dist
44

5-
65
# local env files
76
.env
87
.env.local

README.md

+59-21
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,67 @@
1-
# vue3-starter
1+
### Installation
22

3-
## Project setup
4-
```
3+
```console
54
npm install
6-
```
7-
8-
### Compiles and hot-reloads for development
9-
```
5+
cp .env.example .env
106
npm run serve
117
```
128

13-
### Compiles and minifies for production
14-
```
15-
npm run build
16-
```
9+
# Vue 3 Starter
1710

18-
### Run your unit tests
19-
```
20-
npm run test:unit
21-
```
11+
This is a starter project for [Vue Js](https://vuejs.org/).
2212

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+
---
2766

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

Comments
 (0)