Skip to content

Commit cfcf420

Browse files
authored
Merge pull request #105 from deploystackio/backend-release
[Backend Release] v0.20.8
2 parents 6ab293c + 4f9e315 commit cfcf420

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/backend/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Large diffs are not rendered by default.

services/backend/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ DEPLOYSTACK_ENCRYPTION_SECRET=your-32-character-secret-key-here # Required for
200200
DeployStack uses **Pino** logger with **Fastify** for high-performance, structured logging:
201201

202202
**Available Log Levels** (in order of severity):
203+
203204
- `trace` (10) - Very detailed debugging information
204205
- `debug` (20) - Debugging information for development
205206
- `info` (30) - General information (default for production)
@@ -208,11 +209,13 @@ DeployStack uses **Pino** logger with **Fastify** for high-performance, structur
208209
- `fatal` (60) - Fatal errors that cause application termination
209210

210211
**Environment-based Defaults:**
212+
211213
- **Development**: `debug` level with pretty-printed, colorized output
212214
- **Production**: `info` level with structured JSON output
213215
- **Override**: Set `LOG_LEVEL` environment variable to any level
214216

215217
**Examples:**
218+
216219
```bash
217220
# Show all logs including debug info
218221
LOG_LEVEL=debug npm run dev
@@ -225,6 +228,7 @@ LOG_LEVEL=error npm run start
225228
```
226229

227230
**Log Output Formats:**
231+
228232
- **Development**: `[2025-07-03 10:48:06.636 +0200] INFO: ✅ Database initialization completed`
229233
- **Production**: `{"level":30,"time":"2025-07-03T08:48:06.636Z","msg":"Database initialization completed"}`
230234

services/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deploystack/backend",
3-
"version": "0.20.7",
3+
"version": "0.20.8",
44
"scripts": {
55
"dev": "nodemon",
66
"build": "tsc",

services/frontend/src/views/Setup.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105
<script setup lang="ts">
106106
import { onMounted, ref, computed } from 'vue';
107107
import { useRouter } from 'vue-router';
108-
import { useI18n } from 'vue-i18n';
109108
import { CheckCircle, AlertCircle, AlertTriangle, Loader2 } from 'lucide-vue-next';
110109
111110
import { useDatabaseStore } from '@/stores/database';
@@ -118,7 +117,6 @@ import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
118117
119118
const router = useRouter();
120119
const databaseStore = useDatabaseStore();
121-
const { t } = useI18n();
122120
123121
const setupSuccessMessageVisible = ref(false);
124122
const selectedType = ref<DatabaseType>(DatabaseType.SQLite);

0 commit comments

Comments
 (0)