https://github.com/fajar-dev/teknik.unimal.ac.id
Development Web Fakultas Teknik UNIMAL
https://github.com/fajar-dev/teknik.unimal.ac.id
Last synced: 8 months ago
JSON representation
Development Web Fakultas Teknik UNIMAL
- Host: GitHub
- URL: https://github.com/fajar-dev/teknik.unimal.ac.id
- Owner: fajar-dev
- Created: 2023-07-28T18:28:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-30T15:41:01.000Z (almost 3 years ago)
- Last Synced: 2025-01-10T10:29:08.192Z (over 1 year ago)
- Language: CSS
- Size: 76.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FT UNIMAL Website
## Installation
1. Clone this repository.
2. Install the dependencies. Run `composer install` command.
3. Create `.env` file by simply copying the `.env.example` file and rename it.
4. Configure the `.env` file with your **database connection**, **seeder configuration**, etc.
5. Generate the application key with `php artisan key:generate` command.
6. Generate the storage link with `php artisan storage:link` command.
7. Generate the database structure with this commands based on your preferences:
- Use **`php artisan migrate`** for [creating / updating the database](https://laravel.com/docs/9.x/migrations).
- Use **`php artisan db:seed`** for [seeding the database](https://laravel.com/docs/9.x/seeding#running-seeders).
- Use `php artisan migrate:fresh` for fresh installation.
- Use `php artisan migrate:fresh --seed` for fresh installation and seeding the database.
> **Warning!** If you use `php artisan migrate:fresh` command, all tables will be dropped and recreated. **All data in the tables will be lost**.
7. Finally, start the application with `php artisan serve` command.