https://github.com/infinitypaul/sdui
https://github.com/infinitypaul/sdui
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/infinitypaul/sdui
- Owner: infinitypaul
- Created: 2022-06-23T20:33:27.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-23T21:11:37.000Z (about 4 years ago)
- Last Synced: 2025-04-05T13:44:06.260Z (over 1 year ago)
- Language: PHP
- Size: 150 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
NEWS CRUD
## Tech Stack
* Laravel
* SQLLite
* PHP
## Download Instruction
1. Clone the project.
```
git clone https://github.com/infinitypaul/sdui.git projectname
```
2. Install dependencies via composer.
```
composer install
```
2. SQLite Configuration
```
touch database/database.sqlite
//Add to your env
DB_CONNECTION=sqlite
DB_FOREIGN_KEYS=true
```
3. Migrate and seed the Database.
```
php artisan migrate --seed
```
4. Run Test.
```
php artisan test
```
5. Run php server.
```
php artisan serve
```
6. Available Command.
```
php artisan clean:news
```
Enjoy!!