1- Clone repository using git clone command:
git clone https://github.com/tbz-mikaels/paxful.git
2- Navigate to paxful directory which you recently cloned. Then run following command to create .env config file
cp laravel-app/.env.example laravel-app/.env
3- Then run following command to create your local instance up and running:
docker-compose up -d
docker exec -it paxful_laravel bash
- composer install
- php artisan storage:link
- php artisan migrate --seed
npm install && npm run development
4- After that you can visit following url to see the app in action:
http://localhost
5- Visit mysql view
http://localhost:8080/?server=paxful_mysql&username=root&db=paxful
Password: 12345678
6- Stop docker by running:
docker-compose down