Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naufal-yafi/spec-finder
Kamu butuh rekomendasi hardware?
https://github.com/naufal-yafi/spec-finder
bootstrap5 laravel8 project-ideas web-application
Last synced: 27 days ago
JSON representation
Kamu butuh rekomendasi hardware?
- Host: GitHub
- URL: https://github.com/naufal-yafi/spec-finder
- Owner: naufal-yafi
- Created: 2023-06-06T11:25:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-08T08:07:11.000Z (over 1 year ago)
- Last Synced: 2024-09-27T19:41:06.278Z (about 1 month ago)
- Topics: bootstrap5, laravel8, project-ideas, web-application
- Language: PHP
- Homepage:
- Size: 1.13 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#### 1. Tools yang harus dipersiapkan
#### 2. Unduh repository
```sh
git clone https://github.com/naufal-yafi/spec-finder.git && cd spec-finder
```
#### 3. Unduh semua dependensi
```sh
composer install
```
#### 4. Buat database
Sebelumnya jalankan web server (Apache dan MySQL) menggunakan XAMPP. Setelah itu, jalankan perintah ini di command line, untuk membuat database baru.
```
mysql -u root -e "CREATE DATABASE ;" | exit
```
#### 5. Buat dan Konfigurasi .env
Bisa langsung mengubah nama file .env.example menjadi .env. Dan konfigurasi pada baris kode tersebut
```sh
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
```
#### 6. Bila membutuhkan data dummy
Perintah ini digunakan untuk mengenerate data dummy, jika database yang dibuat masih kosong.
```sh
php artisan migrate --seed
```
Perintah ini digunakan untuk mengenerate data dummy, jika database yang dibuat sudah terdapat data didalamnya.
```sh
php artisan migrate:fresh --seed
```
#### 5. Jalankan Project
```sh
php artisan serve
```