We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i m just learning here.... how do i update the Env File template? any commands to do in terminal ?
Originally posted by @jimblonde100 in #35 (comment)
The text was updated successfully, but these errors were encountered:
@jimblonde100 you can create an env file in the project's root directory with the below command:
export SECRET_KEY=$(python3 generate_new_key.py) touch .env cat > .env <<EOL DJANGO_SECRET_KEY=$SECRET_KEY DEBUG=False ALLOWED_HOSTS=* CSRF_TRUSTED_ORIGINS=http://localhost:8000 EOL
Sorry, something went wrong.
hi thanks for the quick reply... i have done the above mentioned steps.
now how do i update the .env file?
hi thanks for the quick reply... i have done the above mentioned steps. now how do i update the .env file?
It's as simple as editing a file. You can use text editor to edit .env file as change values as per your requirement.
.env
finally got it... being a n00b... i forgot to show hidden files.. sorry.. and thanks for the instant updates !
No branches or pull requests
i m just learning here....
how do i update the Env File template?
any commands to do in terminal ?
Originally posted by @jimblonde100 in #35 (comment)
The text was updated successfully, but these errors were encountered: