Hackathon 2024 Presents RecyCash - Web App that connects sellers and buyers efficiently How to install Open your command prompt and Clone the repository $ git clone https://github.com/nebulemz/hackathon2024/ On the project directory input the following commands Copy the .env.example file and name it .env $ cp .env.example .env Install dependencies $ composer install Generate application key $ php artisan key:generate Run the migrations and seed the application $ php artisan migrate --seed Provide credentials On your .env file provide a public key for MAPBOX_PUBLIC_TOKEN and MAPBOX_TOKEN MAPBOX_PUBLIC_TOKEN=TOKEN_HERE MAPBOX_TOKEN=TOKEN_HERE Run the application (Typically at localhost:8000) $ php artisan serve