mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-15 13:32:43 +01:00
* add playwright setup and tests for auth, profile and organization settings * add playwright github action * add sqlite database * fix playwright base url * add mailpit and parallelization * remove additional waitForUrl in fixture * fix tests * remove waitforurl in tests * change playwright github action to only one worker * try promiso all to avoid loading errors * change environment to include http protocol * convert back to simpler structure * add caching of playwright browser binaries * test if playwright in ci works faster with multiple workers * change back to one worker * remove browser binary caching * try using playwright container to speedup browser setup * rollback image changes * add playwright gitignore changes --------- Co-authored-by: Gregor Vostrak <gregorvostrak@Gregors-MacBook-Pro.local>
61 lines
1.5 KiB
Markdown
61 lines
1.5 KiB
Markdown
# Time-tracking project
|
|
|
|
## Setup the Project
|
|
|
|
System Requirements:
|
|
* Docker
|
|
* PHP 8.2
|
|
* Composer
|
|
|
|
```bash
|
|
composer install
|
|
|
|
cp .env.example .env
|
|
|
|
./vendor/bin/sail up -d
|
|
|
|
./vendor/bin/sail artisan key:generate
|
|
|
|
./vendor/bin/sail artisan migrate:fresh --seed
|
|
|
|
./vendor/bin/sail npm install
|
|
|
|
./vendor/bin/sail npm run build
|
|
|
|
```
|
|
|
|
Make sure to set the APP_PORT and VITE_PORT inside your `.env` file to a port that is not already used by your system.
|
|
|
|
## Setup with Reverse Proxy
|
|
|
|
Additional System Requirements:
|
|
* Traefik 2 Reverse-Proxy (https://github.com/korridor/reverse-proxy-docker-traefik)
|
|
|
|
Add the following entry to your `/etc/hosts`
|
|
|
|
```
|
|
127.0.0.1 timetracker.test
|
|
127.0.0.1 playwright.timetracker.test
|
|
```
|
|
|
|
## Running E2E Tests
|
|
|
|
`./vendor/bin/sail up -d ` will automatically start a Playwright UI server that you can access at `https://playwright.timetracker.test`.
|
|
Make sure that you use HTTPS otherwise the resources will not be loaded correctly.
|
|
|
|
## Recording E2E Tests
|
|
|
|
To record E2E tests, you need to install and execute playwright locally using:
|
|
|
|
```bash
|
|
npx playwright install
|
|
npx playwright codegen timetracker.test
|
|
```
|
|
|
|
## Contributing
|
|
|
|
This project is in a very early stage. The structure and APIs are still subject to change and not stable.
|
|
Therefore we do not currently accept any contributions, unless you are a member of the team.
|
|
|
|
As soon as we feel comfortable enough that the application structure is stable enough, we will open up the project for contributions.
|