File tree 2 files changed +24
-0
lines changed
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ APP_SECRET='$ecretf0rt3st'
4
4
SYMFONY_DEPRECATIONS_HELPER = 999999
5
5
PANTHER_APP_ENV = panther
6
6
PANTHER_ERROR_SCREENSHOT_DIR = ./var/error-screenshots
7
+ DATABASE_URL = " sqlite:///%kernel.project_dir%/var/data.db"
Original file line number Diff line number Diff line change
1
+ # fake-fortee for phpcon2023 talk "SymfonyとDoctrineで始める安全なモジュラモノリス"
2
+
3
+ ## how to run tests
4
+
5
+ ``` shell
6
+ composer install
7
+ symfony console doctrine:schema:update --force --env=test
8
+ vendor/bin/phpunit
9
+ ```
10
+
11
+ ## how to see application working
12
+
13
+ Install Symfony command first. The instruction is here: https://symfony.com/download#step-1-install-symfony-cli
14
+
15
+ ``` shell
16
+ composer install
17
+ docker compose up -d
18
+ symfony console doctrine:schema:update --force
19
+ symfony console app:demo
20
+ symfony server:start -d
21
+ ```
22
+
23
+ Visit http://127.0.0.1:8000 in your browser.
You can’t perform that action at this time.
0 commit comments