- Esteban Vergara Giraldo
- Jonathan Betancur Espinosa
- Samuel Rendón Trujillo
http://pixel-plaza.online/public
http://pixel-plaza.online/public/api/games
http://pixel-plaza.online/public/api/games/{id}
Follow these instructions to get the project up and running on your local machine.
- PHP >= 7.3
- Composer
- MySQL
-
Clone the repository:
git clone https://github.com/jonathanbees/Pixel-Plaza.git cd Pixel-Plaza
-
Install the dependencies:
composer install
-
Copy the
.env.example
file to.env
:cp .env.example .env
-
Add your database information and API key to the
.env
file:DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=your_database_name DB_USERNAME=your_database_user DB_PASSWORD=your_database_password GEMINI_API_KEY=your_gemini_api_key HUGGINGFACE_API_KEY=your_huggingface_api_key
-
Run the migrations:
php artisan migrate
-
Seed the database:
php artisan db:seed
-
Start the local development server:
php artisan serve
-
Visit the project in your browser:
http://localhost:8000
For more details, refer to the Laravel documentation.