Compare commits
No commits in common. "ba1035fc9a33500fb5afcd5906cf9ba03589b772" and "78a4e22d3730a54b72d5f9059d0f7ac390171bc1" have entirely different histories.
ba1035fc9a
...
78a4e22d37
3 changed files with 6 additions and 13 deletions
|
|
@ -1 +0,0 @@
|
||||||
DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
|
|
||||||
services:
|
services:
|
||||||
###> doctrine/doctrine-bundle ###
|
###> doctrine/doctrine-bundle ###
|
||||||
database:
|
database:
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432"
|
||||||
###< doctrine/doctrine-bundle ###
|
###< doctrine/doctrine-bundle ###
|
||||||
|
|
||||||
###> symfony/mailer ###
|
###> symfony/mailer ###
|
||||||
|
|
@ -14,5 +15,4 @@ services:
|
||||||
environment:
|
environment:
|
||||||
MP_SMTP_AUTH_ACCEPT_ANY: 1
|
MP_SMTP_AUTH_ACCEPT_ANY: 1
|
||||||
MP_SMTP_AUTH_ALLOW_INSECURE: 1
|
MP_SMTP_AUTH_ALLOW_INSECURE: 1
|
||||||
|
|
||||||
###< symfony/mailer ###
|
###< symfony/mailer ###
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,8 @@
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
# PHP and tools
|
# PHP and tools
|
||||||
(php84.withExtensions ({ enabled, all }: enabled ++ (with all; [ pdo_pgsql pgsql ])))
|
php84
|
||||||
php84Packages.composer
|
php84Packages.composer
|
||||||
symfony-cli
|
|
||||||
|
|
||||||
# Container tools
|
# Container tools
|
||||||
podman
|
podman
|
||||||
|
|
@ -16,9 +15,4 @@ pkgs.mkShell {
|
||||||
curl
|
curl
|
||||||
gnumake
|
gnumake
|
||||||
];
|
];
|
||||||
|
|
||||||
shellHook = ''
|
|
||||||
export SHELL=${pkgs.zsh}/bin/zsh
|
|
||||||
exec ${pkgs.zsh}/bin/zsh
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue