I want to run a project from gitlab on my local machine. I cloned the project, created a virtual environment and activated it. When I want to run without debugging I got this error:
File "c:\Users\ME\Desktop\test\z_tool\settings.py", line 28, in <module>
SECRET_KEY = env.str('DJANGO_SECRET_KEY')
File "c:\Users\ME\Desktop\test\myenv\lib\site-packages\environs\__init__.py", line 110, in method
raise EnvError('Environment variable "{}" not set'.format(proxied_key or parsed_key))
environs.EnvError: Environment variable "DJANGO_SECRET_KEY" not set
The output of this project is a form, how can I solve this error to get the output?