Skip to content

Commit

Permalink
refactor: Add MEDIA_ROOT path to .env.example
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
unna97 committed Aug 12, 2024
1 parent cb0f5c5 commit f55c8af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ DB_NAME = 'waveform_audio'
DB_USER = 'postgres'
DB_PASSWORD = ''
DB_HOST = 'localhost'
DB_PORT = '5432'
DB_PORT = '5432'
MEDIA_ROOT = '/home/user/media/' # path to media files

0 comments on commit f55c8af

Please sign in to comment.