Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions services/backend/CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions services/backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ DEPLOYSTACK_ENCRYPTION_SECRET=your-32-character-secret-key-here # Required for
DeployStack uses **Pino** logger with **Fastify** for high-performance, structured logging:

**Available Log Levels** (in order of severity):

- `trace` (10) - Very detailed debugging information
- `debug` (20) - Debugging information for development
- `info` (30) - General information (default for production)
Expand All @@ -208,11 +209,13 @@ DeployStack uses **Pino** logger with **Fastify** for high-performance, structur
- `fatal` (60) - Fatal errors that cause application termination

**Environment-based Defaults:**

- **Development**: `debug` level with pretty-printed, colorized output
- **Production**: `info` level with structured JSON output
- **Override**: Set `LOG_LEVEL` environment variable to any level

**Examples:**

```bash
# Show all logs including debug info
LOG_LEVEL=debug npm run dev
Expand All @@ -225,6 +228,7 @@ LOG_LEVEL=error npm run start
```

**Log Output Formats:**

- **Development**: `[2025-07-03 10:48:06.636 +0200] INFO: ✅ Database initialization completed`
- **Production**: `{"level":30,"time":"2025-07-03T08:48:06.636Z","msg":"Database initialization completed"}`

Expand Down
2 changes: 1 addition & 1 deletion services/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deploystack/backend",
"version": "0.20.7",
"version": "0.20.8",
"scripts": {
"dev": "nodemon",
"build": "tsc",
Expand Down
2 changes: 0 additions & 2 deletions services/frontend/src/views/Setup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@
<script setup lang="ts">
import { onMounted, ref, computed } from 'vue';
import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n';
import { CheckCircle, AlertCircle, AlertTriangle, Loader2 } from 'lucide-vue-next';

import { useDatabaseStore } from '@/stores/database';
Expand All @@ -118,7 +117,6 @@ import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';

const router = useRouter();
const databaseStore = useDatabaseStore();
const { t } = useI18n();

const setupSuccessMessageVisible = ref(false);
const selectedType = ref<DatabaseType>(DatabaseType.SQLite);
Expand Down