https://github.com/eniehack/nikkiame-next
a blog server written by php and laravel taken care of private.
https://github.com/eniehack/nikkiame-next
Last synced: about 1 year ago
JSON representation
a blog server written by php and laravel taken care of private.
- Host: GitHub
- URL: https://github.com/eniehack/nikkiame-next
- Owner: eniehack
- Created: 2022-06-21T17:41:29.000Z (about 4 years ago)
- Default Branch: trunk
- Last Pushed: 2023-10-30T15:20:36.000Z (over 2 years ago)
- Last Synced: 2025-02-13T06:19:08.475Z (over 1 year ago)
- Language: PHP
- Homepage: https://dev.nikkiame.eniehack.net
- Size: 718 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## install
### requirements
- php >= 8.1
## for developer
### Debian / Ubuntu
1. install php and dependencies
```shell-session
sudo apt install php php-common php-curl php-sqlite3 php-mbstring php-xml composer
```
2. git clone && cd
3. install php library
```shell-session
composer i
```
4. generate security key
```shell-session
php artisan key:generate --env=dev
```
5. re-cache config
```shell-session
DB_DATABASE="$(pwd)/database/test.sqlite" php artisan config:cache --env=dev
```
6. run migration
```shell-session
DB_DATABASE="$(pwd)/database/test.sqlite" php artisan migrate --env=dev
```
7. run app
```shell-session
DB_DATABASE="$(pwd)/database/test.sqlite" php artisan serve --env=dev
```