feat(storage): add Storage app scaffolding and root config

- Add storage app directory structure
- Add storage dev scripts to root package.json
- Add storage backend and web env generation in generate-env.mjs
- Update COMMANDS.md with calendar app reference

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Till-JS 2025-12-02 14:41:15 +01:00
parent 1a88dec0a5
commit 19500e8467
88 changed files with 8293 additions and 5 deletions

View file

@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { ShareController } from './share.controller';
import { ShareService } from './share.service';
@Module({
controllers: [ShareController],
providers: [ShareService],
exports: [ShareService],
})
export class ShareModule {}