taskman
1.0.0
Ein einfacher Task-Manager, der mit Symfony erstellt wurde.
Dieses Projekt wendet Konzepte von TDD, DDD, CQRS und ereignisgesteuerter Architektur an.
Um dieses Projekt auszuführen, müssen Docker
und Docker-Compose
installiert sein.
Bevor Sie das Projekt ausführen, führen Sie bitte die folgenden Befehle aus:
make setup
docker-compose exec php sh -c '
set -e
mkdir -p config/jwt
jwt_passphrase=${JWT_PASSPHRASE:-$(grep ''^JWT_PASSPHRASE='' .env | cut -f 2 -d ''='')}
echo "$jwt_passphrase" | openssl genpkey -out config/jwt/private.pem -pass stdin -aes256 -algorithm rsa -pkeyopt rsa_keygen_bits:4096
echo "$jwt_passphrase" | openssl pkey -in config/jwt/private.pem -passin stdin -out config/jwt/public.pem -pubout
setfacl -R -m u:www-data:rX -m u:"$(whoami)":rwX config/jwt
setfacl -dR -m u:www-data:rX -m u:"$(whoami)":rwX config/jwt
'
Nachdem das Projekt eingerichtet wurde und die Container gestartet wurden, können Sie:
docker-compose exec php bin/console app:register-user
curl --location --request POST 'http://localhost/api/auth-token'
--form 'username=YOUR_USERNAME'
--form 'password=YOUR_PASSWORD'
curl --location --request POST 'http://localhost/api/tasks'
--header 'Authorization: Bearer YOUR_JWT_TOKEN'
--form 'title=Task #1'
--form 'execution_date=2020-09-20'
# if you don't set the `execution_date` param, the default value is the current date
curl --location --request GET 'http://localhost/api/tasks?execution_date=2020-09-20'
--header 'Authorization: Bearer YOUR_JWT_TOKEN'
So führen Sie Unit- und Funktionstests durch:
make test