Select the types of activity you want to include in your feed.
flora is a fast and secure runtime that lets you write discord bots for your servers, with a rich TypeScript SDK, without worrying about running infrastructure. [mirror]
···116116# Default value: 1048576
117117# max_script_bytes = 1048576
118118119119+# Maximum number of deployment files accepted by bundler.
120120+#
121121+# Can also be specified via environment variable `RUNTIME_MAX_BUNDLE_FILES`.
122122+#
123123+# Default value: 200
124124+# max_bundle_files = 200
125125+126126+# Maximum total deployment bundle source bytes accepted by bundler.
127127+#
128128+# Can also be specified via environment variable `RUNTIME_MAX_BUNDLE_TOTAL_BYTES`.
129129+#
130130+# Default value: 1048576
131131+# max_bundle_total_bytes = 1048576
132132+119133# Maximum number of cron jobs per guild (or default runtime).
120134#
121135# Can also be specified via environment variable `RUNTIME_MAX_CRON_JOBS`.
+6
crates/flora_config/src/lib.rs
···9393 /// Max script size in bytes (SDK + deployment). Default: 1MB.
9494 #[config(env = "RUNTIME_MAX_SCRIPT_BYTES", default = 1_048_576)]
9595 pub max_script_bytes: usize,
9696+ /// Maximum number of deployment files accepted by bundler.
9797+ #[config(env = "RUNTIME_MAX_BUNDLE_FILES", default = 200)]
9898+ pub max_bundle_files: usize,
9999+ /// Maximum total deployment bundle source bytes accepted by bundler.
100100+ #[config(env = "RUNTIME_MAX_BUNDLE_TOTAL_BYTES", default = 1_048_576)]
101101+ pub max_bundle_total_bytes: usize,
96102 /// Maximum number of cron jobs per guild (or default runtime).
97103 #[config(env = "RUNTIME_MAX_CRON_JOBS", default = 32)]
98104 pub max_cron_jobs: usize,