Initial commit: Custom Start Page application with authentication and DynamoDB storage

This commit is contained in:
2026-02-18 22:06:43 -05:00
commit 7175ff14ba
47 changed files with 7592 additions and 0 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '3.8'
services:
dynamodb-local:
image: amazon/dynamodb-local:latest
container_name: startpage-dynamodb-local
ports:
- "8000:8000"
command: "-jar DynamoDBLocal.jar -sharedDb -dbPath ./data"
volumes:
- dynamodb-data:/home/dynamodblocal/data
working_dir: /home/dynamodblocal
volumes:
dynamodb-data: