Skip to content

Commit 59ebf4f

Browse files
committed
feat: add global settings table and related permissions, update README and SECURITY documentation
1 parent e48b5b9 commit 59ebf4f

File tree

17 files changed

+2153
-1
lines changed

17 files changed

+2153
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ fastly-events.log
5656
deploystack.db
5757
services/backend/persistent_data/*
5858

59-
._*.ts
59+
._*.ts
60+
cookies.txt

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ You can also run DeployStack on your own infrastructure for maximum control:
9696

9797
```env
9898
DEPLOYSTACK_FRONTEND_URL=http://localhost:5173
99+
DEPLOYSTACK_ENCRYPTION_SECRET=your-very-secure-32-character-secret-key-here
99100
```
100101

101102
```bash
@@ -125,6 +126,7 @@ Alternatively, you can deploy the pre-built Docker images for the frontend and b
125126
docker run -d \
126127
-p 3000:3000 \
127128
-e DEPLOYSTACK_FRONTEND_URL="http://localhost:8080" \
129+
-e DEPLOYSTACK_ENCRYPTION_SECRET="your-very-secure-32-character-secret-key-here" \
128130
-v $(pwd)/services/backend/persistent_data:/app/persistent_data \
129131
deploystack/backend:latest
130132
```
@@ -154,6 +156,7 @@ For production deployments on a VPS or remote server, update the environment var
154156
docker run -d \
155157
-p 3000:3000 \
156158
-e DEPLOYSTACK_FRONTEND_URL="http://YOUR_SERVER_IP:8080" \
159+
-e DEPLOYSTACK_ENCRYPTION_SECRET="your-very-secure-32-character-secret-key-here" \
157160
-v $(pwd)/services/backend/persistent_data:/app/persistent_data \
158161
deploystack/backend:latest
159162
```

0 commit comments

Comments
 (0)