A simple store writen in PHP 7+. It uses PagSeguro as payment gateway.
You just need PHP to with PDO and sqlite3 run this project:
BASE_URL=http://localhost:8080
php -S localhost:8080 home.phpYou can use docker to run the store:
docker run \
--rm \
-ti \
-v $PWD:/app \
-w /app \
-e BASE_URL=http://localhost:8080 \
-p 8080:8080 \
php \
php -S 0.0.0.0:8080 home.phpThen, you need to make the setup to create the batabase (sqlite) file:
http://localhost:8080/setup
That's it!
