https://github.com/jefferson10147/cable-unet
CRUD app with Laravel, mysql, and bootstrap.
https://github.com/jefferson10147/cable-unet
bootstrap laravel mysql php-8
Last synced: about 2 months ago
JSON representation
CRUD app with Laravel, mysql, and bootstrap.
- Host: GitHub
- URL: https://github.com/jefferson10147/cable-unet
- Owner: jefferson10147
- License: mit
- Created: 2021-03-12T06:09:09.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-04T15:35:01.000Z (about 5 years ago)
- Last Synced: 2025-03-13T03:15:59.582Z (about 1 year ago)
- Topics: bootstrap, laravel, mysql, php-8
- Language: Blade
- Homepage: http://cable-unet.herokuapp.com/
- Size: 1.15 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About this app
This application is called "Cable UNET" and it is a project for the Programming II course. This project was made with
Laravel, which is php framework, and it also uses MySQL as database and css framework's Bootstrap.
## Hosting
This app was deeployed on [Heroku](https://www.heroku.com/) servers and the MySQL database instance is currently running in [Clever Cloud](https://www.clever-cloud.com)
* Visit the app at: [Cable UNET](http://cable-unet.herokuapp.com/)
## How To Run This Project (On Linux)
1- Clone this project, on your local machine:
```bash
$ git clone https://github.com/jefferson10147/cable-UNET
```
2- Install composer into your project folder:
```bash
$ composer install
```
3- Create your .env file:
```bash
$ cat .env.excample >> .env
```
4- Put your database configuration into .env file, just modifying these fields:
```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=cable_unet
DB_USERNAME=your_db_user
DB_PASSWORD=your_db_password
```
5- Generate your app keys:
```
$ php artisan key:generate
```
6- Make the database migrations:
```
$ php artisan migrate
```
7- Run app:
```
$ php artisan serve
```
You can import a test database with test records using database.sql file, it's located in root directory
```
$ mysql -u root -p < database.sql
```