Skip to content

Commit

Permalink
Fix main server production path
Browse files Browse the repository at this point in the history
  • Loading branch information
We-Gold committed Jul 24, 2024
1 parent 4c56185 commit 250022d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/servers/main-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { startDockerCompose, stopDockerCompose } from './docker'
const DEVELOPMENT_PATH = join(__dirname, '../../python/')
const DEVELOPMENT_CONFIG = join(DEVELOPMENT_PATH, 'compose.yml')

const PRODUCTION_PATH = join(__dirname, '../../../extra-resources/main-server/')
const PRODUCTION_PATH = join(__dirname, '../../../extra-resources/server/')
const PRODUCTION_CONFIG = join(PRODUCTION_PATH, 'compose.yml')

export async function startMainServerDevelopment(): Promise<void> {
Expand Down

0 comments on commit 250022d

Please sign in to comment.