Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ux.symfony.com/.env.test
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# define your env variables for the test env here
KERNEL_CLASS='App\Kernel'
APP_SECRET='$ecretf0rt3st'
SYMFONY_DEPRECATIONS_HELPER=999999
PANTHER_APP_ENV=panther
PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots
35 changes: 35 additions & 0 deletions ux.symfony.com/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# [ux.symfony.com](https://ux.symfony.com)

Source code for [ux.symfony.com](https://ux.symfony.com).

## Contributing

### Local Development

1. Install the project:
```bash
git clone git@github.com:symfony/ux
cd ux/ux.symfony.com
```
2. Install the dependencies:
```bash
composer install
```
3. (optional) Configure docker:
```bash
docker compose up -d
```
4. Populate the database:
```bash
symfony console app:load-data
```
5. Start the web server:
```bash
symfony server:start -d
```

### Running the Test Suite

```bash
vendor/bin/phpunit
```
3 changes: 2 additions & 1 deletion ux.symfony.com/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@
"symfony/phpunit-bridge": "^6.1",
"symfony/stopwatch": "6.3.*",
"symfony/web-profiler-bundle": "6.3.*",
"zenstruck/browser": "^1.1"
"zenstruck/browser": "^1.1",
"zenstruck/foundry": "^1.33"
}
}
Loading