- Clone the repo
cp .env.example .env
, fill the DATABASE_URL- run
composer update
- create database
php bin/console doctrine:database:create
- run the migrations
php bin/console doctrine:migrations:migrate
- generate test data
bin/console load-data --accounts=100 --teams=10
. You can change accounts and teams count - (optional) run the server
symfony server:start
- (optional) open
<server_url>/api
route in browser. (E.g. if you did previous step, you probably can runhttp://127.0.0.1:8000/api
)