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
6 changes: 2 additions & 4 deletions .github/workflows/CI-CD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@ name: CI/CD

on:
push:
branches: [ "main", "dev" ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
branches: [ "master" ]
pull_request:
branches: ["dev"]
branches: [ "master" ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ The compose configuration includes:
- Image rebuild on Dockerfile changes
- Environment variable loading from `.env` file

When developing locally, you will most likely need to use a service like [ngrok](https://ngrok.com/) to expose your local server to the internet for Discord interactions.

## License

Copyright (c) Paillat-dev
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies = [
"discord-progress-bar>=0.1.2",
"moviepy>=2.2.1",
"playwright>=1.56.0",
"py-cord>=2.7.0rc2",
"py-cord>=2.7.0",
"pycord-rest-bot>=0.2.0",
"pydantic>=2.12.5",
]
Expand All @@ -18,7 +18,7 @@ dependencies = [
dev = [
"python-dotenv>=1.2.1",
"ruff>=0.14.8",
"ty>=0.0.1a32",
"ty>=0.0.9",
"uv>=0.9.16",
]

Expand Down
2 changes: 1 addition & 1 deletion src/renderer/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,6 @@ async def render(self, flag: "Flag", progress_reporter: ProgressReporter | None
flag.to_url_params(),
temp_dir=temp_dir,
exec_page=self._setup_ui,
viewport={"width": 960, "height": 540},
viewport={"width": 1080, "height": 720},
progress_reporter=progress_reporter,
)
Loading