A web application for keeping track of storage boxes.
- PHP 8.3+
- MySQL or SQLite
- Redis
Run composer install.
Copy .env to .env.local and configure your database. For SQLite:
DB_CONNECTION=sqlite
DB_DATABASE=/absolute/path/to/organizer.dbFor MySQL:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=organizer
DB_USERNAME=organizer
DB_PASSWORD=secretGenerate an application key:
php artisan key:generateRun the database migrations:
php artisan migrateCreate a user:
php artisan user:add test@example.com mySecurePasswordStart the server:
composer goConnect to http://localhost:8000 and log in.