{"id":19736007,"url":"https://github.com/ethenkem/PyGraphSurvey","last_synced_at":"2025-04-30T04:31:56.963Z","repository":{"id":254873570,"uuid":"847683240","full_name":"ethen-kem/PyGraphSurvey","owner":"ethen-kem","description":"A python base web app that provide graphical analysis on data collected from surveys and the system has its on built in form fiiling where admin can set question and sent a link for the forms to be filled and then the system provide anylysis on the collected data. Form feature include selection options, range values file inputs etc","archived":false,"fork":false,"pushed_at":"2024-10-01T00:45:34.000Z","size":290,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-17T13:55:06.240Z","etag":null,"topics":["data"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ethen-kem.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-26T10:47:09.000Z","updated_at":"2024-10-01T00:53:38.000Z","dependencies_parsed_at":"2024-08-26T18:39:21.101Z","dependency_job_id":"ead5d29b-1356-4413-a501-857f2f3b23f6","html_url":"https://github.com/ethen-kem/PyGraphSurvey","commit_stats":null,"previous_names":["ethan-korl/survey-app","ethen-kem/pygraphsurvey"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethen-kem%2FPyGraphSurvey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethen-kem%2FPyGraphSurvey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethen-kem%2FPyGraphSurvey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethen-kem%2FPyGraphSurvey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ethen-kem","download_url":"https://codeload.github.com/ethen-kem/PyGraphSurvey/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224197987,"owners_count":17271999,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data"],"created_at":"2024-11-12T01:04:44.675Z","updated_at":"2025-04-30T04:31:51.612Z","avatar_url":"https://github.com/ethen-kem.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hosted on\n```\nhttps://survey-app-yjrt.onrender.com\n```\n# Setup\n```bash\ncd survey-app\npip install requirements.txt\n./manege.py makemigrations | python manage.py makemigrations\n./manage.py migrate | python manage.py migrate\n```\n# Testing\n```bash\n./manage.py test | python manage.py test\n```\n# Running the program locally\n```bash\n./manage.py runserver | python manage.py runserver\n```\n# Running the docker image\n```bash\ndocker pull bhigethan/survey_app:latest\ndocker run -p 8000:8000 \\\n-e POSTGRES_USER=\u003cpostgres_user\u003e \\\n-e POSTGRES_DBNAM=\u003cpostgres_dbname\u003e \\\n-e POSTGRES_USER_PASSWORD=\u003cpostgres_user_password\u003e \\\n-e HOST=\u003chost\u003e \\\n-e PORT=\u003cport\u003e \\\nbhigethan/survey_app:latest\n```\n# Runnig in Production Environment\n```bash\ngunicorn SurveyApp.wsgi\n```\n# Swagger Documentation api \n```\n/api/schema/swagger-ui/\n```\n# 16 directories, 68 files\n# Projecct Structure\n```plaintext\n.\n├── accounts\n│   ├── admin.py\n│   ├── apps.py\n│   ├── __init__.py\n│   ├── models.py\n│   ├── repository.py\n│   ├── serializers.py\n│   ├── tests.py\n│   ├── urls.py\n│   └── views\n│       ├── __init__.py\n│       └── views.py\n├── auth_backend\n│   ├── backends.py\n│   ├── __init__.py\n│   └── tests.py\n├── db.sqlite3\n├── Dockerfile\n├── ImageResponses\n│   └── Untitled.png\n├── main\n│   ├── admin.py\n│   ├── apps.py\n│   ├── __init__.py\n│   ├── models\n│   │   ├── __init__.py\n│   │   ├── questions.py\n│   │   ├── responses.py\n│   │   └── surveys.py\n│   ├── repository\n│   │   ├── __init__.py\n│   │   ├── question.py\n│   │   ├── response.py\n│   │   └── survey.py\n│   ├── serializers\n│   │   ├── __init__.py\n│   │   ├── question.py\n│   │   ├── response.py\n│   │   └── survey.py\n│   ├── test\n│   │   ├── base.py\n│   │   ├── __init__.py\n│   │   ├── question.py\n│   │   ├── response.py\n│   │   ├── sa_apis.py\n│   │   ├── sa_views.py\n│   │   ├── sp_views.py\n│   │   └── survey.py\n│   ├── urls\n│   │   ├── __init__.py\n│   │   ├── sa_urls.py\n│   │   └── sp_urls.py\n│   └── views\n│       ├── __init__.py\n│       ├── sa_dashboard_apis.py\n│       ├── sa_dashboard_views.py\n│       ├── sp_dashboard_apis.py\n│       └── sp_dashboard_views.py\n├── manage.py\n├── README.md\n├── requirements.txt\n├── scripts\n├── SurveyApp\n│   ├── asgi.py\n│   ├── __init__.py\n│   ├── settings.py\n│   ├── urls.py\n│   └── wsgi.py\n├── tailwind.config.js\n├── templates\n│   ├── sa_dashboard.html\n│   ├── sa_login.html\n│   ├── sa_question_options.html\n│   ├── sa_question_responses.html\n│   ├── sa_questions.html\n│   ├── sa_register.html\n│   ├── sp_response.html\n│   ├── survey_detail.html\n│   └── survey_questions.html\n└── utils\n    ├── general.py\n    ├── __init__.py\n    └── question.py\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethenkem%2FPyGraphSurvey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fethenkem%2FPyGraphSurvey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethenkem%2FPyGraphSurvey/lists"}