Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 682 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 682 Bytes

Overview

A web application for keeping track of storage boxes.

Requirements

  • PHP
  • MySQL or SQLite
  • Redis

Getting Started

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 test@hotmail.com mySecurePassword

Start the server:

composer go

Connect to http://localhost:8000 and log in.