Skip to content

Commit 3a41044

Browse files
kbondweaverryan
authored andcommitted
[Site] updates
1 parent 6fccb03 commit 3a41044

19 files changed

+728
-448
lines changed

ux.symfony.com/.env.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# define your env variables for the test env here
22
KERNEL_CLASS='App\Kernel'
33
APP_SECRET='$ecretf0rt3st'
4-
SYMFONY_DEPRECATIONS_HELPER=999999
54
PANTHER_APP_ENV=panther
65
PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots

ux.symfony.com/README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# [ux.symfony.com](https://ux.symfony.com)
2+
3+
Source code for [ux.symfony.com](https://ux.symfony.com).
4+
5+
## Contributing
6+
7+
### Local Development
8+
9+
1. Install the project:
10+
```bash
11+
git clone [email protected]:symfony/ux
12+
cd ux/ux.symfony.com
13+
```
14+
2. Install the dependencies:
15+
```bash
16+
composer install
17+
```
18+
3. (optional) Configure docker:
19+
```bash
20+
docker compose up -d
21+
```
22+
4. Populate the database:
23+
```bash
24+
symfony console app:load-data
25+
```
26+
5. Start the web server:
27+
```bash
28+
symfony server:start -d
29+
```
30+
31+
### Running the Test Suite
32+
33+
```bash
34+
vendor/bin/phpunit
35+
```

ux.symfony.com/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
"symfony/phpunit-bridge": "^6.1",
116116
"symfony/stopwatch": "6.3.*",
117117
"symfony/web-profiler-bundle": "6.3.*",
118-
"zenstruck/browser": "^1.1"
118+
"zenstruck/browser": "^1.1",
119+
"zenstruck/foundry": "^1.33"
119120
}
120121
}

0 commit comments

Comments
 (0)