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