Skip to content

Commit

Permalink
feat(apps): allow user to give a specific custom port for the app
Browse files Browse the repository at this point in the history
  • Loading branch information
nicotsx committed Dec 27, 2024
1 parent b68f4ac commit f0e3f39
Show file tree
Hide file tree
Showing 23 changed files with 509 additions and 118 deletions.
4 changes: 1 addition & 3 deletions packages/backend/src/app.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import path from 'node:path';
import { Injectable } from '@nestjs/common';
import Sentry from '@sentry/nestjs';
import * as Sentry from '@sentry/nestjs';
import { z } from 'zod';
import { LATEST_RELEASE_URL } from './common/constants';
import { execAsync } from './common/helpers/exec-helpers';
Expand All @@ -11,7 +11,6 @@ import { FilesystemService } from './core/filesystem/filesystem.service';
import { LoggerService } from './core/logger/logger.service';
import { SocketManager } from './core/socket/socket.service';
import { AppStoreService } from './modules/app-stores/app-store.service';
import { AppsRepository } from './modules/apps/apps.repository';
import { MarketplaceService } from './modules/marketplace/marketplace.service';
import { RepoEventsQueue } from './modules/queue/entities/repo-events';

Expand All @@ -25,7 +24,6 @@ export class AppService {
private readonly socketManager: SocketManager,
private readonly filesystem: FilesystemService,
private readonly appStoreService: AppStoreService,
private readonly appsRepository: AppsRepository,
private readonly marketplaceService: MarketplaceService,
private readonly databaseService: DatabaseService,
) {}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "app" ADD COLUMN "port" integer;

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit f0e3f39

Please sign in to comment.