diff --git a/.env.example b/.env.example index 0142dd4..896ddce 100644 --- a/.env.example +++ b/.env.example @@ -1,2 +1,2 @@ JWT_SECRET=SECRET_TOKEN -ROCKET_PORT=8000 +PORT=8000 diff --git a/README.md b/README.md index 3c8ae61..8356217 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ docker compose up > You may need a `.env` file to set the environment variables. Check [the `.env.example` file](./.env.example) for more information. -Both of the commands above will run the server on port `8000`, so you can access the server at `http://localhost:8000`. You can also change the port by setting the `ROCKET_PORT` environment variable. +Both of the commands above will run the server on port `8000`, so you can access the server at `http://localhost:8000`. You can also change the port by setting the `PORT` environment variable. ## Endpoints diff --git a/docker-compose.yml b/docker-compose.yml index 6d03b33..48ddd05 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: context: . target: runtime ports: - - "${ROCKET_PORT}:${ROCKET_PORT}" + - "${PORT}:${PORT}" volumes: - ./cache:/app/cache env_file: diff --git a/translated/README.de.md b/translated/README.de.md index 5f7b529..eed7a20 100644 --- a/translated/README.de.md +++ b/translated/README.de.md @@ -32,7 +32,7 @@ docker compose up > Sie benötigen möglicherweise eine `.env`-Datei, um die Umgebungsvariablen festzulegen. Weitere Informationen finden Sie in der Datei [`.env.example`](./.env.example). -Beide oben genannten Befehle führen den Server auf Port `8000` aus, sodass Sie auf den Server unter `http://localhost:8000` zugreifen können. Sie können auch den Port ändern, indem Sie die Umgebungsvariable `ROCKET_PORT` festlegen. +Beide oben genannten Befehle führen den Server auf Port `8000` aus, sodass Sie auf den Server unter `http://localhost:8000` zugreifen können. Sie können auch den Port ändern, indem Sie die Umgebungsvariable `PORT` festlegen. ## Endpunkte diff --git a/translated/README.es.md b/translated/README.es.md index 035a096..ede2cec 100644 --- a/translated/README.es.md +++ b/translated/README.es.md @@ -32,7 +32,7 @@ docker compose up > Es posible que necesites un archivo `.env` para establecer las variables de entorno. Consulta [el archivo `.env.example`](./.env.example) para obtener más información. -Ambos comandos anteriores ejecutarán el servidor en el puerto `8000`, por lo que puedes acceder al servidor en `http://localhost:8000`. También puedes cambiar el puerto estableciendo la variable de entorno `ROCKET_PORT`. +Ambos comandos anteriores ejecutarán el servidor en el puerto `8000`, por lo que puedes acceder al servidor en `http://localhost:8000`. También puedes cambiar el puerto estableciendo la variable de entorno `PORT`. ## Endpoints diff --git a/translated/README.fr.md b/translated/README.fr.md index 07b471c..2edd3d1 100644 --- a/translated/README.fr.md +++ b/translated/README.fr.md @@ -32,7 +32,7 @@ docker compose up > Vous pouvez avoir besoin d'un fichier `.env` pour définir les variables d'environnement. Consultez [le fichier `.env.example`](./.env.example) pour plus d'informations. -Les deux commandes ci-dessus exécuteront le serveur sur le port `8000`, vous pouvez donc accéder au serveur à l'adresse `http://localhost:8000`. Vous pouvez également changer le port en définissant la variable d'environnement `ROCKET_PORT`. +Les deux commandes ci-dessus exécuteront le serveur sur le port `8000`, vous pouvez donc accéder au serveur à l'adresse `http://localhost:8000`. Vous pouvez également changer le port en définissant la variable d'environnement `PORT`. ## Points d'extrémité diff --git a/translated/README.ja.md b/translated/README.ja.md index 4c45c21..c682f14 100644 --- a/translated/README.ja.md +++ b/translated/README.ja.md @@ -32,7 +32,7 @@ docker compose up > 環境変数を設定するために `.env` ファイルが必要な場合があります。詳細については、[`.env.example` ファイル](./.env.example) を確認してください。 -上記のコマンドのいずれかを実行すると、サーバーがポート `8000` で実行されるため、`http://localhost:8000` でサーバーにアクセスできます。また、`ROCKET_PORT` 環境変数を設定することでポートを変更できます。 +上記のコマンドのいずれかを実行すると、サーバーがポート `8000` で実行されるため、`http://localhost:8000` でサーバーにアクセスできます。また、`PORT` 環境変数を設定することでポートを変更できます。 ## エンドポイント diff --git a/translated/README.ko.md b/translated/README.ko.md index df44023..bd175b5 100644 --- a/translated/README.ko.md +++ b/translated/README.ko.md @@ -32,7 +32,7 @@ docker compose up > 환경 변수를 설정하기 위해 `.env` 파일이 필요할 수 있습니다. 자세한 내용은 [.env.example 파일](./.env.example)을 확인하세요. -위 두 명령어는 모두 서버를 `8000` 포트에서 실행합니다. 따라서 `http://localhost:8000`에서 서버에 접속할 수 있습니다. `ROCKET_PORT` 환경 변수를 설정하여 포트를 변경할 수도 있습니다. +위 두 명령어는 모두 서버를 `8000` 포트에서 실행합니다. 따라서 `http://localhost:8000`에서 서버에 접속할 수 있습니다. `PORT` 환경 변수를 설정하여 포트를 변경할 수도 있습니다. ## 엔드포인트 diff --git a/translated/README.zh-CN.md b/translated/README.zh-CN.md index d9780e9..d9b75f1 100644 --- a/translated/README.zh-CN.md +++ b/translated/README.zh-CN.md @@ -32,7 +32,7 @@ docker compose up > 你可能需要一个 `.env` 文件来设置环境变量。查看 [`.env.example` 文件](./.env.example) 获取更多信息。 -以上两个命令都会在端口 `8000` 上运行服务器,所以你可以通过 `http://localhost:8000` 访问服务器。你也可以通过设置 `ROCKET_PORT` 环境变量来更改端口。 +以上两个命令都会在端口 `8000` 上运行服务器,所以你可以通过 `http://localhost:8000` 访问服务器。你也可以通过设置 `PORT` 环境变量来更改端口。 ## 端点 diff --git a/translated/README.zh-TW.md b/translated/README.zh-TW.md index 16707e0..699bcc1 100644 --- a/translated/README.zh-TW.md +++ b/translated/README.zh-TW.md @@ -32,7 +32,7 @@ docker compose up > 你可能需要一個 `.env` 檔案來設置環境變數。請查看 [`.env.example` 檔案](./.env.example) 以獲取更多資訊。 -以上兩個命令都會在端口 `8000` 上運行伺服器,因此你可以在 `http://localhost:8000` 上訪問伺服器。你也可以通過設置 `ROCKET_PORT` 環境變數來更改端口。 +以上兩個命令都會在端口 `8000` 上運行伺服器,因此你可以在 `http://localhost:8000` 上訪問伺服器。你也可以通過設置 `PORT` 環境變數來更改端口。 ## 端點