From f55c8af9a4089daf5d342488604bfe687f53169e Mon Sep 17 00:00:00 2001 From: unna97 <31486108+unna97@users.noreply.github.com> Date: Mon, 12 Aug 2024 14:09:40 +0530 Subject: [PATCH] refactor: Add MEDIA_ROOT path to .env.example This commit adds the MEDIA_ROOT path to the .env.example file. The MEDIA_ROOT path specifies the location of the media files in the application. By including this path in the .env.example file, it provides a clear reference for developers to set the correct path in their local environment. --- .env.example | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 6d71cc2..8ed4025 100644 --- a/.env.example +++ b/.env.example @@ -2,4 +2,5 @@ DB_NAME = 'waveform_audio' DB_USER = 'postgres' DB_PASSWORD = '' DB_HOST = 'localhost' -DB_PORT = '5432' \ No newline at end of file +DB_PORT = '5432' +MEDIA_ROOT = '/home/user/media/' # path to media files \ No newline at end of file