diff --git a/astro.config.mjs b/astro.config.mjs index 6278612..d4fa41e 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -11,5 +11,9 @@ export default defineConfig({ mode: 'standalone' }), outDir: './dist', - site: 'https://mrcool.freshyo.in', + site: 'http://mrcool.freshyo.in', + server: { + host: '0.0.0.0', + port: 4321 + } }); diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 7557a0e..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,12 +0,0 @@ -version: '3.8' - -services: - mrcool: - build: . - container_name: mrcool-app - ports: - - "4321:4321" - environment: - - TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN} - - TELEGRAM_CHAT_ID=${TELEGRAM_CHAT_ID} - restart: unless-stopped