deps version bump + frontend
Some checks failed
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed
Some checks failed
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed
This commit is contained in:
14
frontend/pweb/caddy/Caddyfile
Normal file
14
frontend/pweb/caddy/Caddyfile
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
email {$CADDY_ACME_EMAIL}
|
||||
auto_https on
|
||||
}
|
||||
|
||||
{$SERVICE_HOST} {
|
||||
root * /usr/share/pweb
|
||||
encode zstd gzip
|
||||
try_files {path} /index.html
|
||||
file_server
|
||||
header {
|
||||
Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"
|
||||
}
|
||||
}
|
||||
@@ -20,6 +20,6 @@ replace_env_var "DEFAULT_LOCALE"
|
||||
replace_env_var "DEFAULT_CURRENCY"
|
||||
|
||||
echo "Passing by launch command"
|
||||
# Execute the passed command (e.g., starting Nginx)
|
||||
# Execute the passed command (e.g., starting Caddy)
|
||||
# exec "$@"
|
||||
exec nginx -g 'daemon off;'
|
||||
exec caddy run --config /etc/caddy/Caddyfile --adapter caddyfile
|
||||
|
||||
@@ -64,7 +64,7 @@ class _AvatarTileState extends State<AvatarTile> {
|
||||
width: _avatarSize,
|
||||
height: _avatarSize,
|
||||
fit: BoxFit.cover,
|
||||
errorBuilder: (_, __, ___) => _buildPlaceholder(),
|
||||
errorBuilder: (_, _, _) => _buildPlaceholder(),
|
||||
)
|
||||
: _buildPlaceholder(),
|
||||
),
|
||||
|
||||
@@ -36,7 +36,7 @@ class _PaymentMethodDropdownState extends State<PaymentMethodDropdown> {
|
||||
Widget build(BuildContext context) {
|
||||
return DropdownButtonFormField<PaymentMethod>(
|
||||
dropdownColor: Theme.of(context).colorScheme.onSecondary,
|
||||
value: _selectedMethod,
|
||||
initialValue: _selectedMethod,
|
||||
decoration: InputDecoration(
|
||||
labelText: AppLocalizations.of(context)!.whereGetMoney,
|
||||
border: OutlineInputBorder(borderRadius: BorderRadius.circular(8)),
|
||||
|
||||
Reference in New Issue
Block a user