diff --git a/.gitignore b/.gitignore index 13d15e2..ade89e4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -civicenv -civicProject.code-workspace \ No newline at end of file +.env +issue_photos/ \ No newline at end of file diff --git a/civicfix/Procfile b/Procfile similarity index 100% rename from civicfix/Procfile rename to Procfile diff --git a/civicfix/.env b/civicfix/.env deleted file mode 100644 index 4eef742..0000000 --- a/civicfix/.env +++ /dev/null @@ -1,10 +0,0 @@ -SECRET_KEY="django-insecure-wa6p9d+go#+evjql%m(+e5eti$%z7yx2o#cbq8bsh!==icxua3" -DEBUG="False" -CLOUD_NAME="dkxbfoesf" -API_KEY="658671916285379" -API_SECRET="_CwNDj4L2dE9yH90Ynj7slPlbo0" -CLOUDINARY_URL="cloudinary://658671916285379:_CwNDj4L2dE9yH90Ynj7slPlbo0@dkxbfoesf" -DATABASE_URL="postgresql://civicfix_user:YG56PWj9Xj1DvYIKF35TKmIEjrsfis6d@dpg-d2mpapripnbc73f5vaj0-a.oregon-postgres.render.com/civicfix" -SUPERUSER_USERNAME="admin" -SUPERUSER_PASSWORD="82c96bb18606401630ab9d2836325fbd" -SUPERUSER_EMAIL="gokuldevse2001@gmail.com" \ No newline at end of file diff --git a/civicfix/.gitignore b/civicfix/.gitignore deleted file mode 100644 index ade89e4..0000000 --- a/civicfix/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.env -issue_photos/ \ No newline at end of file diff --git a/civicfix/civicfix/__init__.py b/civicfix/__init__.py similarity index 100% rename from civicfix/civicfix/__init__.py rename to civicfix/__init__.py diff --git a/civicfix/__pycache__/__init__.cpython-313.pyc b/civicfix/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..76a4b3b Binary files /dev/null and b/civicfix/__pycache__/__init__.cpython-313.pyc differ diff --git a/civicfix/civicfix/__pycache__/settings.cpython-313.pyc b/civicfix/__pycache__/settings.cpython-313.pyc similarity index 93% rename from civicfix/civicfix/__pycache__/settings.cpython-313.pyc rename to civicfix/__pycache__/settings.cpython-313.pyc index a824d66..109ae17 100644 Binary files a/civicfix/civicfix/__pycache__/settings.cpython-313.pyc and b/civicfix/__pycache__/settings.cpython-313.pyc differ diff --git a/civicfix/civicfix/__pycache__/urls.cpython-313.pyc b/civicfix/__pycache__/urls.cpython-313.pyc similarity index 70% rename from civicfix/civicfix/__pycache__/urls.cpython-313.pyc rename to civicfix/__pycache__/urls.cpython-313.pyc index a05b589..a603d5d 100644 Binary files a/civicfix/civicfix/__pycache__/urls.cpython-313.pyc and b/civicfix/__pycache__/urls.cpython-313.pyc differ diff --git a/civicfix/civicfix/__pycache__/wsgi.cpython-313.pyc b/civicfix/__pycache__/wsgi.cpython-313.pyc similarity index 100% rename from civicfix/civicfix/__pycache__/wsgi.cpython-313.pyc rename to civicfix/__pycache__/wsgi.cpython-313.pyc diff --git a/civicfix/civicfix/asgi.py b/civicfix/asgi.py similarity index 100% rename from civicfix/civicfix/asgi.py rename to civicfix/asgi.py diff --git a/civicfix/civicfix/__pycache__/__init__.cpython-313.pyc b/civicfix/civicfix/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index fd40d33..0000000 Binary files a/civicfix/civicfix/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/civicfix/core/__pycache__/__init__.cpython-313.pyc b/civicfix/core/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index 327c7a5..0000000 Binary files a/civicfix/core/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/civicfix/core/migrations/__pycache__/__init__.cpython-313.pyc b/civicfix/core/migrations/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index b8e3899..0000000 Binary files a/civicfix/core/migrations/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/civicfix/core/templatetags/__pycache__/__init__.cpython-313.pyc b/civicfix/core/templatetags/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index 942736d..0000000 Binary files a/civicfix/core/templatetags/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/civicfix/civicfix/settings.py b/civicfix/settings.py similarity index 100% rename from civicfix/civicfix/settings.py rename to civicfix/settings.py diff --git a/civicfix/civicfix/urls.py b/civicfix/urls.py similarity index 100% rename from civicfix/civicfix/urls.py rename to civicfix/urls.py diff --git a/civicfix/civicfix/wsgi.py b/civicfix/wsgi.py similarity index 100% rename from civicfix/civicfix/wsgi.py rename to civicfix/wsgi.py diff --git a/civicfix/core/__init__.py b/core/__init__.py similarity index 100% rename from civicfix/core/__init__.py rename to core/__init__.py diff --git a/core/__pycache__/__init__.cpython-313.pyc b/core/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..7dfe26f Binary files /dev/null and b/core/__pycache__/__init__.cpython-313.pyc differ diff --git a/civicfix/core/__pycache__/admin.cpython-313.pyc b/core/__pycache__/admin.cpython-313.pyc similarity index 84% rename from civicfix/core/__pycache__/admin.cpython-313.pyc rename to core/__pycache__/admin.cpython-313.pyc index b71af22..ccf8345 100644 Binary files a/civicfix/core/__pycache__/admin.cpython-313.pyc and b/core/__pycache__/admin.cpython-313.pyc differ diff --git a/civicfix/core/__pycache__/apps.cpython-313.pyc b/core/__pycache__/apps.cpython-313.pyc similarity index 66% rename from civicfix/core/__pycache__/apps.cpython-313.pyc rename to core/__pycache__/apps.cpython-313.pyc index bb8d376..455504b 100644 Binary files a/civicfix/core/__pycache__/apps.cpython-313.pyc and b/core/__pycache__/apps.cpython-313.pyc differ diff --git a/civicfix/core/__pycache__/forms.cpython-313.pyc b/core/__pycache__/forms.cpython-313.pyc similarity index 86% rename from civicfix/core/__pycache__/forms.cpython-313.pyc rename to core/__pycache__/forms.cpython-313.pyc index 8cfac62..56a0b62 100644 Binary files a/civicfix/core/__pycache__/forms.cpython-313.pyc and b/core/__pycache__/forms.cpython-313.pyc differ diff --git a/civicfix/core/__pycache__/models.cpython-313.pyc b/core/__pycache__/models.cpython-313.pyc similarity index 96% rename from civicfix/core/__pycache__/models.cpython-313.pyc rename to core/__pycache__/models.cpython-313.pyc index 941f48d..8b9267b 100644 Binary files a/civicfix/core/__pycache__/models.cpython-313.pyc and b/core/__pycache__/models.cpython-313.pyc differ diff --git a/civicfix/core/__pycache__/urls.cpython-313.pyc b/core/__pycache__/urls.cpython-313.pyc similarity index 74% rename from civicfix/core/__pycache__/urls.cpython-313.pyc rename to core/__pycache__/urls.cpython-313.pyc index 7e8d062..c5444ab 100644 Binary files a/civicfix/core/__pycache__/urls.cpython-313.pyc and b/core/__pycache__/urls.cpython-313.pyc differ diff --git a/civicfix/core/__pycache__/views.cpython-313.pyc b/core/__pycache__/views.cpython-313.pyc similarity index 98% rename from civicfix/core/__pycache__/views.cpython-313.pyc rename to core/__pycache__/views.cpython-313.pyc index b9d7862..2465f75 100644 Binary files a/civicfix/core/__pycache__/views.cpython-313.pyc and b/core/__pycache__/views.cpython-313.pyc differ diff --git a/civicfix/core/admin.py b/core/admin.py similarity index 100% rename from civicfix/core/admin.py rename to core/admin.py diff --git a/civicfix/core/apps.py b/core/apps.py similarity index 100% rename from civicfix/core/apps.py rename to core/apps.py diff --git a/civicfix/core/forms.py b/core/forms.py similarity index 100% rename from civicfix/core/forms.py rename to core/forms.py diff --git a/civicfix/core/management/commands/initadmin.py b/core/management/commands/initadmin.py similarity index 100% rename from civicfix/core/management/commands/initadmin.py rename to core/management/commands/initadmin.py diff --git a/civicfix/core/migrations/0001_initial.py b/core/migrations/0001_initial.py similarity index 100% rename from civicfix/core/migrations/0001_initial.py rename to core/migrations/0001_initial.py diff --git a/civicfix/core/migrations/0002_user_banned_until_user_is_banned.py b/core/migrations/0002_user_banned_until_user_is_banned.py similarity index 100% rename from civicfix/core/migrations/0002_user_banned_until_user_is_banned.py rename to core/migrations/0002_user_banned_until_user_is_banned.py diff --git a/civicfix/core/migrations/__init__.py b/core/migrations/__init__.py similarity index 100% rename from civicfix/core/migrations/__init__.py rename to core/migrations/__init__.py diff --git a/civicfix/core/migrations/__pycache__/0001_initial.cpython-313.pyc b/core/migrations/__pycache__/0001_initial.cpython-313.pyc similarity index 97% rename from civicfix/core/migrations/__pycache__/0001_initial.cpython-313.pyc rename to core/migrations/__pycache__/0001_initial.cpython-313.pyc index ceb0996..a6063fc 100644 Binary files a/civicfix/core/migrations/__pycache__/0001_initial.cpython-313.pyc and b/core/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/civicfix/core/migrations/__pycache__/0002_alter_user_groups_alter_user_user_permissions.cpython-313.pyc b/core/migrations/__pycache__/0002_alter_user_groups_alter_user_user_permissions.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0002_alter_user_groups_alter_user_user_permissions.cpython-313.pyc rename to core/migrations/__pycache__/0002_alter_user_groups_alter_user_user_permissions.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0002_user_banned_until_user_is_banned.cpython-313.pyc b/core/migrations/__pycache__/0002_user_banned_until_user_is_banned.cpython-313.pyc similarity index 78% rename from civicfix/core/migrations/__pycache__/0002_user_banned_until_user_is_banned.cpython-313.pyc rename to core/migrations/__pycache__/0002_user_banned_until_user_is_banned.cpython-313.pyc index 3d811db..432761d 100644 Binary files a/civicfix/core/migrations/__pycache__/0002_user_banned_until_user_is_banned.cpython-313.pyc and b/core/migrations/__pycache__/0002_user_banned_until_user_is_banned.cpython-313.pyc differ diff --git a/civicfix/core/migrations/__pycache__/0002_vote.cpython-313.pyc b/core/migrations/__pycache__/0002_vote.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0002_vote.cpython-313.pyc rename to core/migrations/__pycache__/0002_vote.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0003_alter_user_user_permissions.cpython-313.pyc b/core/migrations/__pycache__/0003_alter_user_user_permissions.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0003_alter_user_user_permissions.cpython-313.pyc rename to core/migrations/__pycache__/0003_alter_user_user_permissions.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0003_comment.cpython-313.pyc b/core/migrations/__pycache__/0003_comment.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0003_comment.cpython-313.pyc rename to core/migrations/__pycache__/0003_comment.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0004_alter_user_user_permissions.cpython-313.pyc b/core/migrations/__pycache__/0004_alter_user_user_permissions.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0004_alter_user_user_permissions.cpython-313.pyc rename to core/migrations/__pycache__/0004_alter_user_user_permissions.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0004_department_alter_comment_user.cpython-313.pyc b/core/migrations/__pycache__/0004_department_alter_comment_user.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0004_department_alter_comment_user.cpython-313.pyc rename to core/migrations/__pycache__/0004_department_alter_comment_user.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0005_department_users.cpython-313.pyc b/core/migrations/__pycache__/0005_department_users.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0005_department_users.cpython-313.pyc rename to core/migrations/__pycache__/0005_department_users.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0006_remove_department_users_department_admin.cpython-313.pyc b/core/migrations/__pycache__/0006_remove_department_users_department_admin.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0006_remove_department_users_department_admin.cpython-313.pyc rename to core/migrations/__pycache__/0006_remove_department_users_department_admin.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0007_department_users.cpython-313.pyc b/core/migrations/__pycache__/0007_department_users.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0007_department_users.cpython-313.pyc rename to core/migrations/__pycache__/0007_department_users.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0008_alter_issue_options_alter_issue_category_and_more.cpython-313.pyc b/core/migrations/__pycache__/0008_alter_issue_options_alter_issue_category_and_more.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0008_alter_issue_options_alter_issue_category_and_more.cpython-313.pyc rename to core/migrations/__pycache__/0008_alter_issue_options_alter_issue_category_and_more.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0009_issue_department.cpython-313.pyc b/core/migrations/__pycache__/0009_issue_department.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0009_issue_department.cpython-313.pyc rename to core/migrations/__pycache__/0009_issue_department.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0010_remove_issue_category_delete_issuecategory.cpython-313.pyc b/core/migrations/__pycache__/0010_remove_issue_category_delete_issuecategory.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0010_remove_issue_category_delete_issuecategory.cpython-313.pyc rename to core/migrations/__pycache__/0010_remove_issue_category_delete_issuecategory.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0011_delete_issuecategory.cpython-313.pyc b/core/migrations/__pycache__/0011_delete_issuecategory.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0011_delete_issuecategory.cpython-313.pyc rename to core/migrations/__pycache__/0011_delete_issuecategory.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0012_issuecategory_issue_category.cpython-313.pyc b/core/migrations/__pycache__/0012_issuecategory_issue_category.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0012_issuecategory_issue_category.cpython-313.pyc rename to core/migrations/__pycache__/0012_issuecategory_issue_category.cpython-313.pyc diff --git a/core/migrations/__pycache__/__init__.cpython-313.pyc b/core/migrations/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..87e9f97 Binary files /dev/null and b/core/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/civicfix/core/models.py b/core/models.py similarity index 100% rename from civicfix/core/models.py rename to core/models.py diff --git a/civicfix/core/templates/core/base.html b/core/templates/core/base.html similarity index 100% rename from civicfix/core/templates/core/base.html rename to core/templates/core/base.html diff --git a/civicfix/core/templates/core/index.html b/core/templates/core/index.html similarity index 100% rename from civicfix/core/templates/core/index.html rename to core/templates/core/index.html diff --git a/civicfix/core/templates/core/login.html b/core/templates/core/login.html similarity index 100% rename from civicfix/core/templates/core/login.html rename to core/templates/core/login.html diff --git a/civicfix/core/templates/core/manage_users.html b/core/templates/core/manage_users.html similarity index 100% rename from civicfix/core/templates/core/manage_users.html rename to core/templates/core/manage_users.html diff --git a/civicfix/core/templates/core/register.html b/core/templates/core/register.html similarity index 100% rename from civicfix/core/templates/core/register.html rename to core/templates/core/register.html diff --git a/civicfix/core/templates/core/superadmin_reports.html b/core/templates/core/superadmin_reports.html similarity index 100% rename from civicfix/core/templates/core/superadmin_reports.html rename to core/templates/core/superadmin_reports.html diff --git a/civicfix/core/templates/dashboard/citizen_dashboard.html b/core/templates/dashboard/citizen_dashboard.html similarity index 100% rename from civicfix/core/templates/dashboard/citizen_dashboard.html rename to core/templates/dashboard/citizen_dashboard.html diff --git a/civicfix/core/templates/dashboard/department_dashboard.html b/core/templates/dashboard/department_dashboard.html similarity index 100% rename from civicfix/core/templates/dashboard/department_dashboard.html rename to core/templates/dashboard/department_dashboard.html diff --git a/civicfix/core/templates/dashboard/superadmin_dashboard.html b/core/templates/dashboard/superadmin_dashboard.html similarity index 100% rename from civicfix/core/templates/dashboard/superadmin_dashboard.html rename to core/templates/dashboard/superadmin_dashboard.html diff --git a/civicfix/core/templates/department/department_detail.html b/core/templates/department/department_detail.html similarity index 100% rename from civicfix/core/templates/department/department_detail.html rename to core/templates/department/department_detail.html diff --git a/civicfix/core/templates/department/manage_departments.html b/core/templates/department/manage_departments.html similarity index 100% rename from civicfix/core/templates/department/manage_departments.html rename to core/templates/department/manage_departments.html diff --git a/civicfix/core/templates/issues/issue_detail.html b/core/templates/issues/issue_detail.html similarity index 100% rename from civicfix/core/templates/issues/issue_detail.html rename to core/templates/issues/issue_detail.html diff --git a/civicfix/core/templates/issues/manage_issues.html b/core/templates/issues/manage_issues.html similarity index 100% rename from civicfix/core/templates/issues/manage_issues.html rename to core/templates/issues/manage_issues.html diff --git a/civicfix/core/templates/issues/view_all_issues.html b/core/templates/issues/view_all_issues.html similarity index 100% rename from civicfix/core/templates/issues/view_all_issues.html rename to core/templates/issues/view_all_issues.html diff --git a/civicfix/core/templatetags/__init__.py b/core/templatetags/__init__.py similarity index 100% rename from civicfix/core/templatetags/__init__.py rename to core/templatetags/__init__.py diff --git a/core/templatetags/__pycache__/__init__.cpython-313.pyc b/core/templatetags/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..f9e55b0 Binary files /dev/null and b/core/templatetags/__pycache__/__init__.cpython-313.pyc differ diff --git a/civicfix/core/templatetags/__pycache__/custom_filters.cpython-313.pyc b/core/templatetags/__pycache__/custom_filters.cpython-313.pyc similarity index 73% rename from civicfix/core/templatetags/__pycache__/custom_filters.cpython-313.pyc rename to core/templatetags/__pycache__/custom_filters.cpython-313.pyc index 4fab2c7..2b7b4bd 100644 Binary files a/civicfix/core/templatetags/__pycache__/custom_filters.cpython-313.pyc and b/core/templatetags/__pycache__/custom_filters.cpython-313.pyc differ diff --git a/civicfix/core/templatetags/custom_filters.py b/core/templatetags/custom_filters.py similarity index 100% rename from civicfix/core/templatetags/custom_filters.py rename to core/templatetags/custom_filters.py diff --git a/civicfix/core/tests.py b/core/tests.py similarity index 100% rename from civicfix/core/tests.py rename to core/tests.py diff --git a/civicfix/core/urls.py b/core/urls.py similarity index 100% rename from civicfix/core/urls.py rename to core/urls.py diff --git a/civicfix/core/views.py b/core/views.py similarity index 100% rename from civicfix/core/views.py rename to core/views.py diff --git a/civicfix/manage.py b/manage.py similarity index 100% rename from civicfix/manage.py rename to manage.py diff --git a/civicfix/requirements.txt b/requirements.txt similarity index 100% rename from civicfix/requirements.txt rename to requirements.txt