add warning if skipped bucket creation

This commit is contained in:
Miguel Medina
2023-12-04 01:34:52 -06:00
parent b8c5aafa1d
commit 9955a64c56

View File

@ -61,6 +61,10 @@ export class StorageService implements OnModuleInit {
if (this.skipCreateBucket) {
this.logger.log("Skipping the creation of the storage bucket.");
this.logger.warn("Make sure that the following paths are publicly accessible: ");
this.logger.warn("- /pictures/*");
this.logger.warn("- /previews/*");
this.logger.warn("- /resumes/*");
return;
}