Skip to content

Commit 51a984a

Browse files
committed
Edit .gitignore file, add README.md, LICENSE.md and CHANGELOG.md
1 parent 2dccee3 commit 51a984a

File tree

6 files changed

+77
-16443
lines changed

6 files changed

+77
-16443
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ yarn-error.log
2222
/.nova
2323
/.vscode
2424
/.zed
25+
composer.lock
26+
package-lock.json

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## 1.0.0 (2023-03-10)
4+
5+
- Publish new unofficial Laravel + PrimeVue starter kit

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2025 ENGN Ukraine
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Unofficial Laravel + PrimeVue Starter Kit
2+
3+
<p align="center">
4+
<a href="https://github.com/engnua/laravel-vue-primeui-starter-kit/actions"><img src="https://github.com/engnua/laravel-vue-primeui-starter-kit/workflows/tests/badge.svg" alt="Build Status"></a>
5+
<a href="https://packagist.org/packages/engnua/laravel-vue-primeui-starter-kit"><img src="https://img.shields.io/packagist/dt/engnua/laravel-vue-primeui-starter-kit" alt="Total Downloads"></a>
6+
<a href="https://packagist.org/packages/engnua/laravel-vue-primeui-starter-kit"><img src="https://img.shields.io/packagist/v/engnua/laravel-vue-primeui-starter-kit" alt="Latest Stable Version"></a>
7+
<a href="https://packagist.org/packages/engnua/laravel-vue-primeui-starter-kit"><img src="https://img.shields.io/packagist/l/engnua/laravel-vue-primeui-starter-kit" alt="License"></a>
8+
</p>
9+
10+
# Demo
11+
12+
[Demo site](https://laravel-vue-primeui-starter-kit.demo.engn.com.ua)
13+
14+
## Introduction
15+
16+
Our Vue starter kit provides a robust, modern starting point for building Laravel applications with a Vue frontend using [Inertia](https://inertiajs.com).
17+
18+
Inertia allows you to build modern, single-page Vue applications using classic server-side routing and controllers. This lets you enjoy the frontend power of Vue combined with the incredible backend productivity of Laravel and lightning-fast Vite compilation.
19+
20+
This Vue starter kit utilizes Vue 3 and the Composition API, TypeScript, Tailwind 3, and the [PrimeVue](https://primevue.org/) component library.
21+
22+
## Official Documentation
23+
24+
Documentation for all Laravel starter kits can be found on the [Laravel website](https://laravel.com/docs/starter-kits).
25+
26+
## Contributing
27+
28+
Thank you for considering contributing to our starter kit! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
29+
30+
## Code of Conduct
31+
32+
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
33+
34+
## License
35+
36+
The Laravel + PrimeVue starter kit is open-sourced software licensed under the MIT license.
37+
38+
# Docs
39+
40+
To change default theme preset, change config in [useAppearance.ts](resources/js/composables/useAppearance.ts)
41+
42+
```js
43+
const layoutConfig = reactive({
44+
preset: 'Aura',
45+
primary: 'noir',
46+
surface: 'soho',
47+
menuMode: 'static'
48+
});
49+
```

0 commit comments

Comments
 (0)