- PHP 8.0 or higher;
- PDO-SQLite PHP extension enabled;
- and the usual Symfony application requirements.
You need to install :
Install the project :
$ make install
Generate SSH Keys :
$ make generate-ssh-keys
Generate Token :
$ make generate-token
You should have a response like this from the CLI :
{
"token" : "yourtoken"
}
Now, use this token to authenticate yourself in the API.
Boot containers :
$ make dc-up
To interact with the PHP container :
$ make dc-exec
Create database, run migrations and load fixtures :
$ make db-reset
Execute this command to run tests:
$ make tests
$ make tests-reset