WebSite that visualizes the result of a goal counter for a Calcio Balilla Tournament (alias "Biliardino")
- create a folder named "BalillaTournamentWebSite" and inside it 2 folder: "include" and "laravelApp"
- inside include create "connect.php" file, open it an paste:
<?php
$APP_URL="http://localhost";
$USER="root";
$DB="mollinodb";
$HOST="127.0.0.1";
$PASSWORD="root";
- open a terminal inside laravelApp and run
git clone https://github.com/MollinoDev/BalillaTournamentLaravelWebApp.git
Now you should have this structure:
- BalillaTournamentWebSite
- include
- connect.php
- laravelApp
- ...
- include
Be sure you are currently running your apache server. 4. Go to localhost/phpMyAdmin5/ on your browser and create a new db named "mollinodb"
-
Open a terminal inside the laravelApp and run these commands:
composer installcp .env.example .envphp artisan key:generatechmod 755 storage -Rchmod 755 public -R
- run these commands:
composer updatephp artisan migrate:freshphp artisan db:seed - Go to localhost and inside your public folder. The site shoul work!