taskman
1.0.0
使用 Symfony 创建的简单任务管理器。
该项目应用了 TDD、DDD、CQRS 和事件驱动架构的概念。
要运行此项目,您必须安装Docker
和Docker-Compose
。
在运行项目之前,请运行以下命令:
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
'
设置项目并启动容器后,您可以:
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'
运行单元和功能测试:
make test