Skip to content

Commit

Permalink
Merge pull request #602 from Manjusri-A/patch-1
Browse files Browse the repository at this point in the history
Update manage.py
  • Loading branch information
Ayushparikh-code authored Oct 29, 2024
2 parents d0b22db + 8d66d0a commit 5c20acb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Ecommerce Website/manage.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""

import os
import sys


def main():
"""Run administrative tasks."""
# Set the default settings module for the Django project
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ecommerceproject.settings')

try:
# Import and execute Django's command-line management utility
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc

# Execute the command line utility with the provided arguments
execute_from_command_line(sys.argv)


if __name__ == '__main__':
main()

0 comments on commit 5c20acb

Please sign in to comment.