CookieSuite is a web interface for managing cookie production. This Laravel-based application allows users to create, edit, view, and delete records of cookie production.
- PHP >= 8.2
- Composer
- Postgres >= 13.0
git clone https://github.com/StefanNemeth/CookieSuite.git
cd cookiesuite
composer install
cp .env.example .env
php artisan key:generate
DB_CONNECTION=pgsql
DB_HOST=...
DB_PORT=...
DB_DATABASE=...
DB_USERNAME=...
DB_PASSWORD=...
php artisan migrate
php artisan serve