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,11 +1,12 @@
|
|||
|
||||
services:
|
||||
###> doctrine/doctrine-bundle ###
|
||||
###> doctrine/doctrine-bundle ###
|
||||
database:
|
||||
ports:
|
||||
- "5432:5432"
|
||||
###< doctrine/doctrine-bundle ###
|
||||
- "5432"
|
||||
###< doctrine/doctrine-bundle ###
|
||||
|
||||
###> symfony/mailer ###
|
||||
###> symfony/mailer ###
|
||||
mailer:
|
||||
image: axllent/mailpit
|
||||
ports:
|
||||
|
|
@ -14,5 +15,4 @@ services:
|
|||
environment:
|
||||
MP_SMTP_AUTH_ACCEPT_ANY: 1
|
||||
MP_SMTP_AUTH_ALLOW_INSECURE: 1
|
||||
|
||||
###< symfony/mailer ###
|
||||
|
|
|
|||
|
|
@ -3,9 +3,8 @@
|
|||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
# PHP and tools
|
||||
(php84.withExtensions ({ enabled, all }: enabled ++ (with all; [ pdo_pgsql pgsql ])))
|
||||
php84
|
||||
php84Packages.composer
|
||||
symfony-cli
|
||||
|
||||
# Container tools
|
||||
podman
|
||||
|
|
@ -16,9 +15,4 @@ pkgs.mkShell {
|
|||
curl
|
||||
gnumake
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
export SHELL=${pkgs.zsh}/bin/zsh
|
||||
exec ${pkgs.zsh}/bin/zsh
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue