├── .github ├── .keep ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build-ci.yaml │ ├── db-itest-ci.yaml │ ├── db-test-ci.yaml │ ├── dependent-issues.yaml │ ├── label-pr.yaml │ ├── lambda-lint.yaml │ ├── lambda-test.yaml │ ├── license-check.yaml │ ├── linked-issue-pr.yaml │ ├── nextjs-lint.yaml │ ├── nextjs-test-ci.yaml │ └── semantic-pr.yaml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── README.md ├── smoketest │ └── compose │ │ ├── README.md │ │ ├── db.yaml │ │ ├── include │ │ └── servers.json │ │ ├── privacypal.yaml │ │ └── smoketest.sh ├── templates │ ├── README.md │ └── cognito.html ├── video-conversion │ ├── Makefile │ ├── README.md │ ├── images │ │ ├── lambda_deploy.png │ │ ├── lambda_general_config.png │ │ ├── lambda_role_config.png │ │ ├── lambda_role_page.png │ │ └── lambda_trigger_config.png │ ├── lambda │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── install_ffmpeg.sh │ │ ├── lambda_fn.py │ │ ├── requirements_dev.txt │ │ ├── resources │ │ │ ├── sample_event.json │ │ │ ├── username-recorded-20240223T193522.mp4 │ │ │ └── username-recorded-20240223T193522.webm │ │ ├── setup.cfg │ │ └── test_lambda.py │ └── license.header.txt ├── video-processing │ ├── Makefile │ ├── README.md │ ├── deprecated │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── entrypoint.sh │ │ ├── process_tracker.py │ │ ├── requirements.txt │ │ ├── requirements_dev.txt │ │ ├── server.py │ │ ├── setup.cfg │ │ ├── test_server.py │ │ ├── test_video_processor.py │ │ ├── utils.py │ │ └── video_processor.py │ ├── images │ │ ├── lambda_deploy.png │ │ ├── lambda_env_variable_config.png │ │ ├── lambda_general_config.png │ │ ├── lambda_role_config.png │ │ ├── lambda_role_page.png │ │ └── lambda_trigger_config.png │ ├── lambda │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── install_ffmpeg.sh │ │ ├── lambda_fn.py │ │ ├── mock_client.py │ │ ├── requirements.txt │ │ ├── requirements_dev.txt │ │ ├── resources │ │ │ ├── sample_event.json │ │ │ ├── username-recorded-20240223T193522-processed.mp4 │ │ │ └── username-recorded-20240223T193522.mp4 │ │ ├── setup.cfg │ │ ├── test_lambda.py │ │ ├── test_video_processor.py │ │ └── video_processor.py │ ├── license.header.txt │ └── samples │ │ ├── response_no_faces.json │ │ ├── response_one_face.json │ │ ├── response_two_faces.json │ │ ├── test.jpg │ │ └── test.mp4 └── web │ ├── .dockerignore │ ├── .gitignore │ ├── .prettierrc │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── __tests__ │ ├── AboutUs.test.tsx │ ├── AppointmentViewer.test.tsx │ ├── LoadingButton.test.tsx │ ├── ProfileDetail.test.tsx │ ├── ProfilePicture.test.tsx │ ├── __snapshots__ │ │ ├── AppointmentViewer.test.tsx.snap │ │ └── ProfilePicture.test.tsx.snap │ ├── base64.lib.test.ts │ ├── nextConfig.test.ts │ ├── test-configs │ │ └── extractConfigFile.test.json │ └── time.lib.test.ts │ ├── cypress.config.ts │ ├── cypress │ ├── .gitignore │ ├── README.md │ ├── e2e │ │ ├── api │ │ │ └── users.cy.ts │ │ ├── home.cy.ts │ │ ├── login.cy.ts │ │ ├── logout.cy.ts │ │ ├── staff │ │ │ ├── appointment │ │ │ │ └── new.cy.ts │ │ │ └── staff.cy.ts │ │ ├── upload │ │ │ └── upload.cy.ts │ │ └── user │ │ │ ├── appointments.cy.ts │ │ │ └── dashboard.cy.ts │ ├── img │ │ └── cypress │ │ │ ├── choose_browser.png │ │ │ ├── create_new_spec.png │ │ │ ├── example_spec_run.png │ │ │ ├── new_spec.png │ │ │ ├── open_cypress.png │ │ │ ├── run_spec.png │ │ │ └── spec_name.png │ ├── support │ │ └── commands.ts │ ├── test-data │ │ └── test.mp4 │ └── tsconfig.json │ ├── db │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── include │ │ └── entrypoint.sh │ ├── itests │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── schema.test.js │ │ │ ├── tables.js │ │ │ └── utils.js │ ├── license.header.txt │ ├── migrations │ │ ├── 20240408001135_v0_1_0 │ │ │ └── migration.sql │ │ └── migration_lock.toml │ ├── schema.prisma │ └── tests │ │ ├── entrypoint_test.sh │ │ └── prisma │ ├── env.tpl │ ├── jest.config.mjs │ ├── jest.setup.js │ ├── license-config.json │ ├── license.header.txt │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ └── build.json │ ├── src │ ├── app │ │ ├── actions.ts │ │ ├── api │ │ │ ├── README.md │ │ │ ├── appointments │ │ │ │ ├── README.md │ │ │ │ └── route.ts │ │ │ ├── auth │ │ │ │ ├── README.md │ │ │ │ ├── [...nextauth] │ │ │ │ │ └── route.ts │ │ │ │ ├── logout │ │ │ │ │ └── route.ts │ │ │ │ └── verifyUser │ │ │ │ │ └── route.ts │ │ │ ├── clients │ │ │ │ ├── README.md │ │ │ │ └── route.ts │ │ │ ├── message │ │ │ │ ├── README.md │ │ │ │ └── route.ts │ │ │ ├── submitFeedback │ │ │ │ ├── README.md │ │ │ │ └── route.ts │ │ │ ├── timeline │ │ │ │ ├── README.md │ │ │ │ ├── event │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ ├── update-info │ │ │ │ └── route.ts │ │ │ └── video │ │ │ │ ├── README.md │ │ │ │ ├── [ref] │ │ │ │ └── route.ts │ │ │ │ ├── count │ │ │ │ └── route.ts │ │ │ │ ├── processed │ │ │ │ └── route.ts │ │ │ │ ├── review │ │ │ │ ├── README.md │ │ │ │ └── route.ts │ │ │ │ ├── route.ts │ │ │ │ ├── status │ │ │ │ ├── README.md │ │ │ │ └── route.ts │ │ │ │ └── upload │ │ │ │ ├── README.md │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── health │ │ │ ├── liveness │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── login │ │ │ └── page.tsx │ │ ├── not-found.tsx │ │ ├── opengraph-image.png │ │ ├── page.tsx │ │ ├── profile │ │ │ ├── [withUser] │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── update │ │ │ │ └── page.tsx │ │ ├── registration │ │ │ └── page.tsx │ │ ├── staff │ │ │ ├── appointments │ │ │ │ ├── id │ │ │ │ │ └── [id] │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── manage │ │ │ │ │ └── page.tsx │ │ │ │ ├── new │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── user │ │ │ ├── appointments │ │ │ │ ├── [id] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── change_password │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── verify │ │ │ └── [username] │ │ │ │ └── page.tsx │ │ └── welcome │ │ │ └── page.tsx │ ├── assets │ │ ├── Email_logo.png │ │ ├── Github_logo.png │ │ ├── Youtube_logo.png │ │ ├── appointment_background.png │ │ ├── background.svg │ │ ├── blurring_placeholder.png │ │ ├── dark_logo.png │ │ ├── dark_logo_no_name.png │ │ ├── light_logo.png │ │ ├── light_logo_no_name.png │ │ ├── pf_avatar.svg │ │ ├── style.ts │ │ ├── welcome.gif │ │ └── welcomebackground.svg │ ├── auth.ts │ ├── components │ │ ├── CustomAvatar.tsx │ │ ├── ErrorView.tsx │ │ ├── VideoReview.tsx │ │ ├── appointment │ │ │ ├── AppointmentManagementList.tsx │ │ │ ├── AppointmentViewer.tsx │ │ │ ├── inbox │ │ │ │ ├── AppointmentInbox.tsx │ │ │ │ ├── ConversationDropdownMenu.tsx │ │ │ │ ├── ConversationList.tsx │ │ │ │ ├── ConversationPreview.tsx │ │ │ │ ├── ConversationViewer.tsx │ │ │ │ └── InboxAvatar.tsx │ │ │ └── timeline │ │ │ │ ├── AppointmentTimeline.tsx │ │ │ │ ├── ChatBox.tsx │ │ │ │ ├── ConversationMessage.tsx │ │ │ │ ├── ConversationVideo.tsx │ │ │ │ └── DeleteMessageButton.tsx │ │ ├── auth │ │ │ ├── LoginForm.tsx │ │ │ ├── button │ │ │ │ ├── LoginButton.tsx │ │ │ │ └── LogoutButton.tsx │ │ │ └── link │ │ │ │ ├── LoginLink.tsx │ │ │ │ ├── LoginLogoutLink.tsx │ │ │ │ ├── LogoutLink.tsx │ │ │ │ └── SignupLink.tsx │ │ ├── form │ │ │ ├── Hint.tsx │ │ │ ├── LinkButton.tsx │ │ │ ├── LoadingButton.tsx │ │ │ ├── PalTextInput.tsx │ │ │ └── SelectedItem.tsx │ │ ├── layout │ │ │ ├── AppointmentBackground.tsx │ │ │ ├── BackButton.tsx │ │ │ ├── BackgroundImageBasic.tsx │ │ │ ├── Content.tsx │ │ │ ├── Footer.css │ │ │ ├── Footer.tsx │ │ │ ├── GIthubIconImage.tsx │ │ │ ├── Header.tsx │ │ │ ├── NavButton.tsx │ │ │ ├── NavbarLinks.tsx │ │ │ ├── NavigationBar.tsx │ │ │ ├── NotFoundContainer.tsx │ │ │ ├── PrivacyPalLogo.tsx │ │ │ └── ProfilePicture.tsx │ │ ├── profile │ │ │ ├── OtherUserProfileDetails.tsx │ │ │ └── ProfileDetails.tsx │ │ ├── registration │ │ │ ├── PasswordInputForm.tsx │ │ │ ├── RegistrationForm.tsx │ │ │ └── VerificationForm.tsx │ │ ├── staff │ │ │ ├── AttributeFilter.tsx │ │ │ ├── ClientTable.tsx │ │ │ └── NewAppointmentForm.tsx │ │ ├── upload │ │ │ ├── CancelProcessingButton.tsx │ │ │ ├── ClientSideMediaRecorder.tsx │ │ │ ├── FileUploader.tsx │ │ │ ├── PrivacyReview.tsx │ │ │ ├── UploadStatus.tsx │ │ │ ├── UploadVideoForm.tsx │ │ │ ├── UploadWizard.tsx │ │ │ └── blurring │ │ │ │ ├── BlurSettingsSwitch.tsx │ │ │ │ └── VideoBlurringPanel.tsx │ │ ├── user │ │ │ ├── ChangePasswordForm.tsx │ │ │ └── UserUpdateForm.tsx │ │ └── welcome │ │ │ ├── AboutUs.tsx │ │ │ ├── DownArrow.tsx │ │ │ ├── FeedbackForm.tsx │ │ │ ├── GifImage.tsx │ │ │ └── WelcomePage.tsx │ ├── lib │ │ ├── appointment.ts │ │ ├── base64.ts │ │ ├── cognito.ts │ │ ├── db.ts │ │ ├── lambda.ts │ │ ├── response.ts │ │ ├── s3.ts │ │ ├── ses.ts │ │ ├── time.ts │ │ ├── url.ts │ │ ├── userRole.ts │ │ └── utils.ts │ └── middleware.ts │ ├── tsconfig.json │ └── types │ └── next-auth.d.ts ├── docs ├── communication │ └── README.md ├── design │ └── README.md ├── final │ └── README.md ├── plan │ └── Readme.md └── weekly logs │ └── README.md └── helm-charts ├── .gitignore ├── LICENSE ├── README.md ├── SETUP.md ├── chart_schema.yaml ├── charts └── privacypal │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── db.yaml │ ├── deployment.yaml │ ├── fieldexport.yaml │ ├── ingress.yaml │ ├── lambda.yaml │ ├── s3.yaml │ ├── secret.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── ct.yaml ├── images └── eks_components.png ├── lintconf.yaml └── scripts ├── chart_installer.sh └── eks ├── ack_installer.sh ├── aws_lb_controller_iam_policy.json └── aws_lb_controller_install.sh /.github/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/build-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/db-itest-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/db-itest-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/db-test-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/db-test-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/dependent-issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/dependent-issues.yaml -------------------------------------------------------------------------------- /.github/workflows/label-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/label-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/lambda-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/lambda-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/lambda-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/lambda-test.yaml -------------------------------------------------------------------------------- /.github/workflows/license-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/license-check.yaml -------------------------------------------------------------------------------- /.github/workflows/linked-issue-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/linked-issue-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/nextjs-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/nextjs-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/nextjs-test-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/nextjs-test-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/semantic-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.github/workflows/semantic-pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/README.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/README.md -------------------------------------------------------------------------------- /app/smoketest/compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/smoketest/compose/README.md -------------------------------------------------------------------------------- /app/smoketest/compose/db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/smoketest/compose/db.yaml -------------------------------------------------------------------------------- /app/smoketest/compose/include/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/smoketest/compose/include/servers.json -------------------------------------------------------------------------------- /app/smoketest/compose/privacypal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/smoketest/compose/privacypal.yaml -------------------------------------------------------------------------------- /app/smoketest/compose/smoketest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/smoketest/compose/smoketest.sh -------------------------------------------------------------------------------- /app/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/templates/README.md -------------------------------------------------------------------------------- /app/templates/cognito.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/templates/cognito.html -------------------------------------------------------------------------------- /app/video-conversion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/Makefile -------------------------------------------------------------------------------- /app/video-conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/README.md -------------------------------------------------------------------------------- /app/video-conversion/images/lambda_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/images/lambda_deploy.png -------------------------------------------------------------------------------- /app/video-conversion/images/lambda_general_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/images/lambda_general_config.png -------------------------------------------------------------------------------- /app/video-conversion/images/lambda_role_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/images/lambda_role_config.png -------------------------------------------------------------------------------- /app/video-conversion/images/lambda_role_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/images/lambda_role_page.png -------------------------------------------------------------------------------- /app/video-conversion/images/lambda_trigger_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/images/lambda_trigger_config.png -------------------------------------------------------------------------------- /app/video-conversion/lambda/.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | !resources/* 3 | .coverage 4 | -------------------------------------------------------------------------------- /app/video-conversion/lambda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/lambda/Dockerfile -------------------------------------------------------------------------------- /app/video-conversion/lambda/install_ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/lambda/install_ffmpeg.sh -------------------------------------------------------------------------------- /app/video-conversion/lambda/lambda_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/lambda/lambda_fn.py -------------------------------------------------------------------------------- /app/video-conversion/lambda/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/lambda/requirements_dev.txt -------------------------------------------------------------------------------- /app/video-conversion/lambda/resources/sample_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/lambda/resources/sample_event.json -------------------------------------------------------------------------------- /app/video-conversion/lambda/resources/username-recorded-20240223T193522.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/lambda/resources/username-recorded-20240223T193522.mp4 -------------------------------------------------------------------------------- /app/video-conversion/lambda/resources/username-recorded-20240223T193522.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/lambda/resources/username-recorded-20240223T193522.webm -------------------------------------------------------------------------------- /app/video-conversion/lambda/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/lambda/setup.cfg -------------------------------------------------------------------------------- /app/video-conversion/lambda/test_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/lambda/test_lambda.py -------------------------------------------------------------------------------- /app/video-conversion/license.header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-conversion/license.header.txt -------------------------------------------------------------------------------- /app/video-processing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/Makefile -------------------------------------------------------------------------------- /app/video-processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/README.md -------------------------------------------------------------------------------- /app/video-processing/deprecated/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/.dockerignore -------------------------------------------------------------------------------- /app/video-processing/deprecated/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/.gitignore -------------------------------------------------------------------------------- /app/video-processing/deprecated/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/Dockerfile -------------------------------------------------------------------------------- /app/video-processing/deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/README.md -------------------------------------------------------------------------------- /app/video-processing/deprecated/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/entrypoint.sh -------------------------------------------------------------------------------- /app/video-processing/deprecated/process_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/process_tracker.py -------------------------------------------------------------------------------- /app/video-processing/deprecated/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/requirements.txt -------------------------------------------------------------------------------- /app/video-processing/deprecated/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/requirements_dev.txt -------------------------------------------------------------------------------- /app/video-processing/deprecated/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/server.py -------------------------------------------------------------------------------- /app/video-processing/deprecated/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/setup.cfg -------------------------------------------------------------------------------- /app/video-processing/deprecated/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/test_server.py -------------------------------------------------------------------------------- /app/video-processing/deprecated/test_video_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/test_video_processor.py -------------------------------------------------------------------------------- /app/video-processing/deprecated/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/utils.py -------------------------------------------------------------------------------- /app/video-processing/deprecated/video_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/deprecated/video_processor.py -------------------------------------------------------------------------------- /app/video-processing/images/lambda_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/images/lambda_deploy.png -------------------------------------------------------------------------------- /app/video-processing/images/lambda_env_variable_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/images/lambda_env_variable_config.png -------------------------------------------------------------------------------- /app/video-processing/images/lambda_general_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/images/lambda_general_config.png -------------------------------------------------------------------------------- /app/video-processing/images/lambda_role_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/images/lambda_role_config.png -------------------------------------------------------------------------------- /app/video-processing/images/lambda_role_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/images/lambda_role_page.png -------------------------------------------------------------------------------- /app/video-processing/images/lambda_trigger_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/images/lambda_trigger_config.png -------------------------------------------------------------------------------- /app/video-processing/lambda/.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | !resources/* 3 | .coverage 4 | -------------------------------------------------------------------------------- /app/video-processing/lambda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/Dockerfile -------------------------------------------------------------------------------- /app/video-processing/lambda/install_ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/install_ffmpeg.sh -------------------------------------------------------------------------------- /app/video-processing/lambda/lambda_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/lambda_fn.py -------------------------------------------------------------------------------- /app/video-processing/lambda/mock_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/mock_client.py -------------------------------------------------------------------------------- /app/video-processing/lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.26.4 2 | opencv-python-headless==4.9.0.80 3 | -------------------------------------------------------------------------------- /app/video-processing/lambda/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/requirements_dev.txt -------------------------------------------------------------------------------- /app/video-processing/lambda/resources/sample_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/resources/sample_event.json -------------------------------------------------------------------------------- /app/video-processing/lambda/resources/username-recorded-20240223T193522-processed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/resources/username-recorded-20240223T193522-processed.mp4 -------------------------------------------------------------------------------- /app/video-processing/lambda/resources/username-recorded-20240223T193522.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/resources/username-recorded-20240223T193522.mp4 -------------------------------------------------------------------------------- /app/video-processing/lambda/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/setup.cfg -------------------------------------------------------------------------------- /app/video-processing/lambda/test_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/test_lambda.py -------------------------------------------------------------------------------- /app/video-processing/lambda/test_video_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/test_video_processor.py -------------------------------------------------------------------------------- /app/video-processing/lambda/video_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/lambda/video_processor.py -------------------------------------------------------------------------------- /app/video-processing/license.header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/license.header.txt -------------------------------------------------------------------------------- /app/video-processing/samples/response_no_faces.json: -------------------------------------------------------------------------------- 1 | { 2 | "FaceDetails": [ 3 | ] 4 | } 5 | -------------------------------------------------------------------------------- /app/video-processing/samples/response_one_face.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/samples/response_one_face.json -------------------------------------------------------------------------------- /app/video-processing/samples/response_two_faces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/samples/response_two_faces.json -------------------------------------------------------------------------------- /app/video-processing/samples/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/samples/test.jpg -------------------------------------------------------------------------------- /app/video-processing/samples/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/video-processing/samples/test.mp4 -------------------------------------------------------------------------------- /app/web/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/.dockerignore -------------------------------------------------------------------------------- /app/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/.gitignore -------------------------------------------------------------------------------- /app/web/.prettierrc: -------------------------------------------------------------------------------- 1 | 2 | {} 3 | -------------------------------------------------------------------------------- /app/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/Dockerfile -------------------------------------------------------------------------------- /app/web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/Makefile -------------------------------------------------------------------------------- /app/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/README.md -------------------------------------------------------------------------------- /app/web/__tests__/AboutUs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/AboutUs.test.tsx -------------------------------------------------------------------------------- /app/web/__tests__/AppointmentViewer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/AppointmentViewer.test.tsx -------------------------------------------------------------------------------- /app/web/__tests__/LoadingButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/LoadingButton.test.tsx -------------------------------------------------------------------------------- /app/web/__tests__/ProfileDetail.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/ProfileDetail.test.tsx -------------------------------------------------------------------------------- /app/web/__tests__/ProfilePicture.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/ProfilePicture.test.tsx -------------------------------------------------------------------------------- /app/web/__tests__/__snapshots__/AppointmentViewer.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/__snapshots__/AppointmentViewer.test.tsx.snap -------------------------------------------------------------------------------- /app/web/__tests__/__snapshots__/ProfilePicture.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/__snapshots__/ProfilePicture.test.tsx.snap -------------------------------------------------------------------------------- /app/web/__tests__/base64.lib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/base64.lib.test.ts -------------------------------------------------------------------------------- /app/web/__tests__/nextConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/nextConfig.test.ts -------------------------------------------------------------------------------- /app/web/__tests__/test-configs/extractConfigFile.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/test-configs/extractConfigFile.test.json -------------------------------------------------------------------------------- /app/web/__tests__/time.lib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/__tests__/time.lib.test.ts -------------------------------------------------------------------------------- /app/web/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress.config.ts -------------------------------------------------------------------------------- /app/web/cypress/.gitignore: -------------------------------------------------------------------------------- 1 | !*.mp4 2 | -------------------------------------------------------------------------------- /app/web/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/README.md -------------------------------------------------------------------------------- /app/web/cypress/e2e/api/users.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/e2e/api/users.cy.ts -------------------------------------------------------------------------------- /app/web/cypress/e2e/home.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/e2e/home.cy.ts -------------------------------------------------------------------------------- /app/web/cypress/e2e/login.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/e2e/login.cy.ts -------------------------------------------------------------------------------- /app/web/cypress/e2e/logout.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/e2e/logout.cy.ts -------------------------------------------------------------------------------- /app/web/cypress/e2e/staff/appointment/new.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/e2e/staff/appointment/new.cy.ts -------------------------------------------------------------------------------- /app/web/cypress/e2e/staff/staff.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/e2e/staff/staff.cy.ts -------------------------------------------------------------------------------- /app/web/cypress/e2e/upload/upload.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/e2e/upload/upload.cy.ts -------------------------------------------------------------------------------- /app/web/cypress/e2e/user/appointments.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/e2e/user/appointments.cy.ts -------------------------------------------------------------------------------- /app/web/cypress/e2e/user/dashboard.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/e2e/user/dashboard.cy.ts -------------------------------------------------------------------------------- /app/web/cypress/img/cypress/choose_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/img/cypress/choose_browser.png -------------------------------------------------------------------------------- /app/web/cypress/img/cypress/create_new_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/img/cypress/create_new_spec.png -------------------------------------------------------------------------------- /app/web/cypress/img/cypress/example_spec_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/img/cypress/example_spec_run.png -------------------------------------------------------------------------------- /app/web/cypress/img/cypress/new_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/img/cypress/new_spec.png -------------------------------------------------------------------------------- /app/web/cypress/img/cypress/open_cypress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/img/cypress/open_cypress.png -------------------------------------------------------------------------------- /app/web/cypress/img/cypress/run_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/img/cypress/run_spec.png -------------------------------------------------------------------------------- /app/web/cypress/img/cypress/spec_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/img/cypress/spec_name.png -------------------------------------------------------------------------------- /app/web/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/support/commands.ts -------------------------------------------------------------------------------- /app/web/cypress/test-data/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/test-data/test.mp4 -------------------------------------------------------------------------------- /app/web/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/cypress/tsconfig.json -------------------------------------------------------------------------------- /app/web/db/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/.dockerignore -------------------------------------------------------------------------------- /app/web/db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/.gitignore -------------------------------------------------------------------------------- /app/web/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/Dockerfile -------------------------------------------------------------------------------- /app/web/db/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/Makefile -------------------------------------------------------------------------------- /app/web/db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/README.md -------------------------------------------------------------------------------- /app/web/db/include/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/include/entrypoint.sh -------------------------------------------------------------------------------- /app/web/db/itests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/itests/package-lock.json -------------------------------------------------------------------------------- /app/web/db/itests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/itests/package.json -------------------------------------------------------------------------------- /app/web/db/itests/src/schema.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/itests/src/schema.test.js -------------------------------------------------------------------------------- /app/web/db/itests/src/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/itests/src/tables.js -------------------------------------------------------------------------------- /app/web/db/itests/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/itests/src/utils.js -------------------------------------------------------------------------------- /app/web/db/license.header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/license.header.txt -------------------------------------------------------------------------------- /app/web/db/migrations/20240408001135_v0_1_0/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/migrations/20240408001135_v0_1_0/migration.sql -------------------------------------------------------------------------------- /app/web/db/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/migrations/migration_lock.toml -------------------------------------------------------------------------------- /app/web/db/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/schema.prisma -------------------------------------------------------------------------------- /app/web/db/tests/entrypoint_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/db/tests/entrypoint_test.sh -------------------------------------------------------------------------------- /app/web/db/tests/prisma: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Mock prisma 3 | # Print out command arguments 4 | 5 | echo "$@" 6 | -------------------------------------------------------------------------------- /app/web/env.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/env.tpl -------------------------------------------------------------------------------- /app/web/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/jest.config.mjs -------------------------------------------------------------------------------- /app/web/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/jest.setup.js -------------------------------------------------------------------------------- /app/web/license-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/license-config.json -------------------------------------------------------------------------------- /app/web/license.header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/license.header.txt -------------------------------------------------------------------------------- /app/web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/next.config.js -------------------------------------------------------------------------------- /app/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/package-lock.json -------------------------------------------------------------------------------- /app/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/package.json -------------------------------------------------------------------------------- /app/web/public/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/public/build.json -------------------------------------------------------------------------------- /app/web/src/app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/actions.ts -------------------------------------------------------------------------------- /app/web/src/app/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/appointments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/appointments/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/appointments/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/appointments/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/auth/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/auth/logout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/auth/logout/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/auth/verifyUser/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/auth/verifyUser/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/clients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/clients/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/clients/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/clients/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/message/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/message/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/message/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/submitFeedback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/submitFeedback/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/submitFeedback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/submitFeedback/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/timeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/timeline/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/timeline/event/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/timeline/event/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/timeline/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/timeline/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/update-info/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/update-info/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/video/[ref]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/[ref]/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/video/count/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/count/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/video/processed/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/processed/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/video/review/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/review/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/video/review/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/review/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/video/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/video/status/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/status/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/video/status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/status/route.ts -------------------------------------------------------------------------------- /app/web/src/app/api/video/upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/upload/README.md -------------------------------------------------------------------------------- /app/web/src/app/api/video/upload/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/api/video/upload/route.ts -------------------------------------------------------------------------------- /app/web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/favicon.ico -------------------------------------------------------------------------------- /app/web/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/globals.css -------------------------------------------------------------------------------- /app/web/src/app/health/liveness/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/health/liveness/route.ts -------------------------------------------------------------------------------- /app/web/src/app/health/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/health/route.ts -------------------------------------------------------------------------------- /app/web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/layout.tsx -------------------------------------------------------------------------------- /app/web/src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/loading.tsx -------------------------------------------------------------------------------- /app/web/src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/login/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/not-found.tsx -------------------------------------------------------------------------------- /app/web/src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/opengraph-image.png -------------------------------------------------------------------------------- /app/web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/profile/[withUser]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/profile/[withUser]/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/profile/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/profile/update/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/profile/update/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/registration/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/registration/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/staff/appointments/id/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/staff/appointments/id/[id]/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/staff/appointments/manage/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/staff/appointments/manage/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/staff/appointments/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/staff/appointments/new/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/staff/appointments/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/staff/appointments/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/staff/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/staff/layout.tsx -------------------------------------------------------------------------------- /app/web/src/app/staff/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/staff/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/user/appointments/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/user/appointments/[id]/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/user/appointments/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/user/appointments/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/user/change_password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/user/change_password/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/user/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/user/layout.tsx -------------------------------------------------------------------------------- /app/web/src/app/user/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/user/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/verify/[username]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/verify/[username]/page.tsx -------------------------------------------------------------------------------- /app/web/src/app/welcome/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/app/welcome/page.tsx -------------------------------------------------------------------------------- /app/web/src/assets/Email_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/Email_logo.png -------------------------------------------------------------------------------- /app/web/src/assets/Github_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/Github_logo.png -------------------------------------------------------------------------------- /app/web/src/assets/Youtube_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/Youtube_logo.png -------------------------------------------------------------------------------- /app/web/src/assets/appointment_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/appointment_background.png -------------------------------------------------------------------------------- /app/web/src/assets/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/background.svg -------------------------------------------------------------------------------- /app/web/src/assets/blurring_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/blurring_placeholder.png -------------------------------------------------------------------------------- /app/web/src/assets/dark_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/dark_logo.png -------------------------------------------------------------------------------- /app/web/src/assets/dark_logo_no_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/dark_logo_no_name.png -------------------------------------------------------------------------------- /app/web/src/assets/light_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/light_logo.png -------------------------------------------------------------------------------- /app/web/src/assets/light_logo_no_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/light_logo_no_name.png -------------------------------------------------------------------------------- /app/web/src/assets/pf_avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/pf_avatar.svg -------------------------------------------------------------------------------- /app/web/src/assets/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/style.ts -------------------------------------------------------------------------------- /app/web/src/assets/welcome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/welcome.gif -------------------------------------------------------------------------------- /app/web/src/assets/welcomebackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/assets/welcomebackground.svg -------------------------------------------------------------------------------- /app/web/src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/auth.ts -------------------------------------------------------------------------------- /app/web/src/components/CustomAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/CustomAvatar.tsx -------------------------------------------------------------------------------- /app/web/src/components/ErrorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/ErrorView.tsx -------------------------------------------------------------------------------- /app/web/src/components/VideoReview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/VideoReview.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/AppointmentManagementList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/AppointmentManagementList.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/AppointmentViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/AppointmentViewer.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/inbox/AppointmentInbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/inbox/AppointmentInbox.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/inbox/ConversationDropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/inbox/ConversationDropdownMenu.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/inbox/ConversationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/inbox/ConversationList.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/inbox/ConversationPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/inbox/ConversationPreview.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/inbox/ConversationViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/inbox/ConversationViewer.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/inbox/InboxAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/inbox/InboxAvatar.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/timeline/AppointmentTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/timeline/AppointmentTimeline.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/timeline/ChatBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/timeline/ChatBox.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/timeline/ConversationMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/timeline/ConversationMessage.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/timeline/ConversationVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/timeline/ConversationVideo.tsx -------------------------------------------------------------------------------- /app/web/src/components/appointment/timeline/DeleteMessageButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/appointment/timeline/DeleteMessageButton.tsx -------------------------------------------------------------------------------- /app/web/src/components/auth/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/auth/LoginForm.tsx -------------------------------------------------------------------------------- /app/web/src/components/auth/button/LoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/auth/button/LoginButton.tsx -------------------------------------------------------------------------------- /app/web/src/components/auth/button/LogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/auth/button/LogoutButton.tsx -------------------------------------------------------------------------------- /app/web/src/components/auth/link/LoginLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/auth/link/LoginLink.tsx -------------------------------------------------------------------------------- /app/web/src/components/auth/link/LoginLogoutLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/auth/link/LoginLogoutLink.tsx -------------------------------------------------------------------------------- /app/web/src/components/auth/link/LogoutLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/auth/link/LogoutLink.tsx -------------------------------------------------------------------------------- /app/web/src/components/auth/link/SignupLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/auth/link/SignupLink.tsx -------------------------------------------------------------------------------- /app/web/src/components/form/Hint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/form/Hint.tsx -------------------------------------------------------------------------------- /app/web/src/components/form/LinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/form/LinkButton.tsx -------------------------------------------------------------------------------- /app/web/src/components/form/LoadingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/form/LoadingButton.tsx -------------------------------------------------------------------------------- /app/web/src/components/form/PalTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/form/PalTextInput.tsx -------------------------------------------------------------------------------- /app/web/src/components/form/SelectedItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/form/SelectedItem.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/AppointmentBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/AppointmentBackground.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/BackButton.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/BackgroundImageBasic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/BackgroundImageBasic.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/Content.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/Footer.css -------------------------------------------------------------------------------- /app/web/src/components/layout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/Footer.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/GIthubIconImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/GIthubIconImage.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/Header.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/NavButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/NavButton.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/NavbarLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/NavbarLinks.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/NavigationBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/NavigationBar.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/NotFoundContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/NotFoundContainer.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/PrivacyPalLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/PrivacyPalLogo.tsx -------------------------------------------------------------------------------- /app/web/src/components/layout/ProfilePicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/layout/ProfilePicture.tsx -------------------------------------------------------------------------------- /app/web/src/components/profile/OtherUserProfileDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/profile/OtherUserProfileDetails.tsx -------------------------------------------------------------------------------- /app/web/src/components/profile/ProfileDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/profile/ProfileDetails.tsx -------------------------------------------------------------------------------- /app/web/src/components/registration/PasswordInputForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/registration/PasswordInputForm.tsx -------------------------------------------------------------------------------- /app/web/src/components/registration/RegistrationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/registration/RegistrationForm.tsx -------------------------------------------------------------------------------- /app/web/src/components/registration/VerificationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/registration/VerificationForm.tsx -------------------------------------------------------------------------------- /app/web/src/components/staff/AttributeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/staff/AttributeFilter.tsx -------------------------------------------------------------------------------- /app/web/src/components/staff/ClientTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/staff/ClientTable.tsx -------------------------------------------------------------------------------- /app/web/src/components/staff/NewAppointmentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/staff/NewAppointmentForm.tsx -------------------------------------------------------------------------------- /app/web/src/components/upload/CancelProcessingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/upload/CancelProcessingButton.tsx -------------------------------------------------------------------------------- /app/web/src/components/upload/ClientSideMediaRecorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/upload/ClientSideMediaRecorder.tsx -------------------------------------------------------------------------------- /app/web/src/components/upload/FileUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/upload/FileUploader.tsx -------------------------------------------------------------------------------- /app/web/src/components/upload/PrivacyReview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/upload/PrivacyReview.tsx -------------------------------------------------------------------------------- /app/web/src/components/upload/UploadStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/upload/UploadStatus.tsx -------------------------------------------------------------------------------- /app/web/src/components/upload/UploadVideoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/upload/UploadVideoForm.tsx -------------------------------------------------------------------------------- /app/web/src/components/upload/UploadWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/upload/UploadWizard.tsx -------------------------------------------------------------------------------- /app/web/src/components/upload/blurring/BlurSettingsSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/upload/blurring/BlurSettingsSwitch.tsx -------------------------------------------------------------------------------- /app/web/src/components/upload/blurring/VideoBlurringPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/upload/blurring/VideoBlurringPanel.tsx -------------------------------------------------------------------------------- /app/web/src/components/user/ChangePasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/user/ChangePasswordForm.tsx -------------------------------------------------------------------------------- /app/web/src/components/user/UserUpdateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/user/UserUpdateForm.tsx -------------------------------------------------------------------------------- /app/web/src/components/welcome/AboutUs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/welcome/AboutUs.tsx -------------------------------------------------------------------------------- /app/web/src/components/welcome/DownArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/welcome/DownArrow.tsx -------------------------------------------------------------------------------- /app/web/src/components/welcome/FeedbackForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/welcome/FeedbackForm.tsx -------------------------------------------------------------------------------- /app/web/src/components/welcome/GifImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/welcome/GifImage.tsx -------------------------------------------------------------------------------- /app/web/src/components/welcome/WelcomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/components/welcome/WelcomePage.tsx -------------------------------------------------------------------------------- /app/web/src/lib/appointment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/appointment.ts -------------------------------------------------------------------------------- /app/web/src/lib/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/base64.ts -------------------------------------------------------------------------------- /app/web/src/lib/cognito.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/cognito.ts -------------------------------------------------------------------------------- /app/web/src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/db.ts -------------------------------------------------------------------------------- /app/web/src/lib/lambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/lambda.ts -------------------------------------------------------------------------------- /app/web/src/lib/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/response.ts -------------------------------------------------------------------------------- /app/web/src/lib/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/s3.ts -------------------------------------------------------------------------------- /app/web/src/lib/ses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/ses.ts -------------------------------------------------------------------------------- /app/web/src/lib/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/time.ts -------------------------------------------------------------------------------- /app/web/src/lib/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/url.ts -------------------------------------------------------------------------------- /app/web/src/lib/userRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/userRole.ts -------------------------------------------------------------------------------- /app/web/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/lib/utils.ts -------------------------------------------------------------------------------- /app/web/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/src/middleware.ts -------------------------------------------------------------------------------- /app/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/tsconfig.json -------------------------------------------------------------------------------- /app/web/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/app/web/types/next-auth.d.ts -------------------------------------------------------------------------------- /docs/communication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/docs/communication/README.md -------------------------------------------------------------------------------- /docs/design/README.md: -------------------------------------------------------------------------------- 1 | The home for your design documentation. 2 | -------------------------------------------------------------------------------- /docs/final/README.md: -------------------------------------------------------------------------------- 1 | The home for your final documentation. 2 | -------------------------------------------------------------------------------- /docs/plan/Readme.md: -------------------------------------------------------------------------------- 1 | This is the home for your project plan. 2 | -------------------------------------------------------------------------------- /docs/weekly logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/docs/weekly logs/README.md -------------------------------------------------------------------------------- /helm-charts/.gitignore: -------------------------------------------------------------------------------- 1 | !images/* 2 | -------------------------------------------------------------------------------- /helm-charts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/LICENSE -------------------------------------------------------------------------------- /helm-charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/README.md -------------------------------------------------------------------------------- /helm-charts/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/SETUP.md -------------------------------------------------------------------------------- /helm-charts/chart_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/chart_schema.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/.helmignore -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/README.md -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/NOTES.txt -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/db.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/fieldexport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/fieldexport.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/ingress.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/lambda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/lambda.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/s3.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/secret.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/values.schema.json -------------------------------------------------------------------------------- /helm-charts/charts/privacypal/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/charts/privacypal/values.yaml -------------------------------------------------------------------------------- /helm-charts/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/ct.yaml -------------------------------------------------------------------------------- /helm-charts/images/eks_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/images/eks_components.png -------------------------------------------------------------------------------- /helm-charts/lintconf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/lintconf.yaml -------------------------------------------------------------------------------- /helm-charts/scripts/chart_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/scripts/chart_installer.sh -------------------------------------------------------------------------------- /helm-charts/scripts/eks/ack_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/scripts/eks/ack_installer.sh -------------------------------------------------------------------------------- /helm-charts/scripts/eks/aws_lb_controller_iam_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/scripts/eks/aws_lb_controller_iam_policy.json -------------------------------------------------------------------------------- /helm-charts/scripts/eks/aws_lb_controller_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COSC-499-W2023/year-long-project-team-1/HEAD/helm-charts/scripts/eks/aws_lb_controller_install.sh --------------------------------------------------------------------------------