Skip to content

Decrease file size and project size limits #2152

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
May 10, 2021
4 changes: 2 additions & 2 deletions cli/cmd/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ var (
_warningProjectBytes = 1024 * 1024 * 10
_warningFileCount = 1000

_maxFileSizeBytes int64 = 1024 * 1024 * 512
_maxProjectSizeBytes int64 = 1024 * 1024 * 512
_maxFileSizeBytes int64 = 1024 * 1024 * 50 // 50mb
_maxProjectSizeBytes int64 = 1024 * 1024 * 50 // 50mb

_flagDeployEnv string
_flagDeployForce bool
Expand Down