Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/curder/nova-demo
A demo for Nova
https://github.com/curder/nova-demo
Last synced: 3 days ago
JSON representation
A demo for Nova
- Host: GitHub
- URL: https://github.com/curder/nova-demo
- Owner: curder
- Created: 2019-11-12T03:00:56.000Z (about 5 years ago)
- Default Branch: 10.x
- Last Pushed: 2023-12-04T07:38:08.000Z (12 months ago)
- Last Synced: 2023-12-04T08:30:49.035Z (12 months ago)
- Language: PHP
- Homepage:
- Size: 11 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Check & fix styling](https://github.com/curder/nova-demo/actions/workflows/pint.yml/badge.svg)](https://github.com/curder/nova-demo/actions/workflows/pint.yml)
[![Test Laravel Github action](https://github.com/curder/nova-demo/actions/workflows/run-test.yml/badge.svg?branch=10.x)](https://github.com/curder/nova-demo/actions/workflows/run-test.yml)## 初始化
- 添加授权用户名,密码
```bash
composer config http-basic.nova.laravel.com ${NOVA_USERNAME} ${NOVA_LICENSE}
```> 通过上面的命令可以设置对应的 Nova 授权,其中用户名为 https://nova.laravel.com 的登陆邮箱,密码在[Nova 设置处获取](https://nova.laravel.com/settings#password)
- 更新php依赖
```bash
composer install -vvv
```- 修改配置
```bash
cp .env.example .env
```> 在拷贝的 `.env` 文件中修改数据库连接。
- 执行迁移和填充
```bash
php artisan migrate:refresh --seed
```- 登录地址
```
http://nova-demo.test
```- 默认管理员用户名/密码:`[email protected]` / `password`
- 默认编辑用户名/密码:`[email protected]` / `password`