A web application for keeping track of storage boxes.
- PHP
- MySQL or SQLite
- Redis
Run composer install
.
Copy .env
to .env.local
and set a DB url. For instance, to set up SQLite, use:
DATABASE_URL=sqlite:///%kernel.project_dir%/var/organizer.db
Create your database, if it doesn't already exist.
bin/console doctrine:database:create
Populate the schema for your database:
bin/console doctrine:migrations:migrate
Create a user:
bin/console user:add [email protected] mySecurePassword
Start the server:
composer go
Connect to http://localhost:8000 and log in.