├── .DS_Store ├── .github ├── dependabot.yml └── workflows │ ├── backend-build.yml │ ├── ci-cd.yml │ ├── codecov.yml │ ├── deploy-development.yml │ ├── deploy-production.yml │ ├── frontend-build.yml │ ├── test-domains.yml │ ├── test-engine.yml │ ├── test-profiles.yml │ ├── test-sourceconnector.yml │ └── test-warehouse.yml ├── .gitignore ├── Dockerfile ├── README.md ├── backend ├── Pipfile ├── Pipfile.lock ├── domains │ ├── .dockerignore │ ├── Dockerfile │ ├── authchecker │ │ ├── __init__.py │ │ └── auth_checks.py │ ├── domains.uwsgi.ini │ ├── domains │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── domainservice │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── manage.py │ ├── requirements-lock.txt │ ├── requirements.txt │ ├── sourcevalidator │ │ ├── __init__.py │ │ └── validator.py │ └── utils │ │ ├── db_connection.py │ │ └── domainscrud.py ├── engine │ ├── .dockerignore │ ├── Dockerfile │ ├── aggregator │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── analyser │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── engine.uwsgi.ini │ ├── engine │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── postprocessor │ │ ├── __init__.py │ │ └── aggregation.py │ ├── preprocessor │ │ ├── __init__.py │ │ └── preprocessing.py │ ├── processor │ │ ├── __init__.py │ │ ├── nn_models.py │ │ └── processing.py │ ├── requirements-lock.txt │ ├── requirements.txt │ └── utils │ │ ├── __init__.py │ │ └── mock_data.py ├── live_update │ ├── socket_server.py │ └── test_client.py ├── mockdata │ ├── datapopulationscript.py │ ├── db.json │ ├── goddesscafe1.json │ ├── goddesscafe2.json │ ├── goddesscafe3.json │ ├── goddesscafe4.json │ ├── hccinsta1.json │ ├── hccinsta2.json │ ├── script.py │ ├── sharksinsta1.json │ ├── sharksinsta2.json │ ├── temp00.json │ ├── temp01.json │ ├── temp02.json │ ├── temp03.json │ ├── temp04.json │ ├── temp05.json │ ├── temp06.json │ ├── temp110.json │ ├── temp111.json │ ├── temp112.json │ ├── temp113.json │ ├── temp17.json │ ├── temp18.json │ ├── temp19.json │ ├── temp214.json │ ├── temp215.json │ ├── temp216.json │ ├── temp217.json │ ├── temp218.json │ ├── temp319.json │ ├── temp320.json │ ├── temp321.json │ ├── temp322.json │ ├── temp323.json │ ├── temp424.json │ ├── temp425.json │ ├── temp426.json │ ├── temp427.json │ ├── temp428.json │ ├── temp429.json │ ├── temp430.json │ ├── temp431.json │ ├── temp432.json │ ├── temp433.json │ ├── temp434.json │ ├── temp435.json │ ├── temp436.json │ ├── test-connect.py │ ├── tuks1.json │ └── tuks2.json ├── profiles │ ├── Dockerfile │ ├── assets │ │ ├── domain_html.txt │ │ ├── domain_js.txt │ │ ├── images │ │ │ ├── LogoIconBlue.png │ │ │ ├── allSources.png │ │ │ ├── analytics.png │ │ │ ├── analytics.svg │ │ │ ├── anger.png │ │ │ ├── anger.svg │ │ │ ├── calendar.png │ │ │ ├── calendar.svg │ │ │ ├── comments.png │ │ │ ├── comments.svg │ │ │ ├── csv-logo.png │ │ │ ├── disgust.png │ │ │ ├── disgust.svg │ │ │ ├── dp-logo-blue.png │ │ │ ├── fear.png │ │ │ ├── fear.svg │ │ │ ├── footer_art.svg │ │ │ ├── google-logo.png │ │ │ ├── google-reviews.png │ │ │ ├── graph.png │ │ │ ├── graph.svg │ │ │ ├── header_art.svg │ │ │ ├── joy.png │ │ │ ├── joy.svg │ │ │ ├── link-solid.svg │ │ │ ├── live-review-logo.png │ │ │ ├── negative.png │ │ │ ├── negative.svg │ │ │ ├── neutral-score.png │ │ │ ├── neutral-score.svg │ │ │ ├── neutral.svg │ │ │ ├── positive.png │ │ │ ├── positive.svg │ │ │ ├── sadness.png │ │ │ ├── sadness.svg │ │ │ ├── starbucks-logo.png │ │ │ ├── surprise.png │ │ │ ├── surprise.svg │ │ │ ├── toxic.png │ │ │ ├── toxic.svg │ │ │ ├── tripadvisor-logo.png │ │ │ ├── trustpilot-logo.png │ │ │ └── youtube-logo.png │ │ ├── input_template.html │ │ ├── source_html.txt │ │ ├── source_js.txt │ │ └── style.css │ ├── check_auth │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── manage.py │ ├── profiles.uwsgi.ini │ ├── profiles │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── profileservice │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_profiles_userid.py │ │ │ ├── 0003_alter_profiles_domainids.py │ │ │ ├── 0004_alter_profiles_domainids.py │ │ │ ├── 0005_domains.py │ │ │ ├── 0006_remove_domains_description_remove_domains_icon_and_more.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── reportgenerator │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── requirements-lock.txt │ ├── requirements.txt │ └── utils │ │ ├── __init__.py │ │ └── profilescrud.py ├── readme.md ├── scripts │ ├── check_all.sh │ ├── coverage.sh │ ├── push-images.bat │ ├── run-projects.sh │ ├── servers.json │ ├── start_backend_w_pm2.sh │ ├── update-services.sh │ └── warehouse_cleanup.py ├── sourceconnector │ ├── Dockerfile │ ├── googlereviews │ │ ├── __init__.py │ │ └── google_reviews_connector.py │ ├── manage.py │ ├── refresh │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── requirements-lock.txt │ ├── requirements.txt │ ├── sourceconnector.uwsgi.ini │ ├── sourceconnector │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── tripadvisor │ │ ├── __init__.py │ │ └── tripadvisor_connector.py │ ├── trustpilot │ │ ├── __init__.py │ │ └── trustpilot_connector.py │ ├── utils │ │ ├── __init__.py │ │ └── mock_data.py │ └── youtube │ │ ├── __init__.py │ │ └── youtube_connector.py └── warehouse │ ├── CSV │ ├── __init__.py │ └── csv_connector.py │ ├── Dockerfile │ ├── authchecker │ ├── __init__.py │ └── auth_checks.py │ ├── datamanager │ ├── __init__.py │ ├── refresh_queue.py │ └── sentiment_record_model.py │ ├── ingest │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── Centre logo white.png │ │ ├── Centre logo white.svg │ │ ├── error.svg │ │ ├── favicon.ico │ │ ├── live-bg.jpg │ │ ├── live-bg.png │ │ ├── style.css │ │ └── success.svg │ ├── templates │ │ ├── done.html │ │ ├── error.html │ │ └── form.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── query │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── requirements-lock.txt │ ├── requirements.txt │ ├── utils │ ├── __init__.py │ └── db_connection.py │ ├── warehouse.uwsgi.ini │ └── warehouse │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── codecov.yml ├── demos-archive-readme.md ├── dev-server-compose.yml ├── docker-compose.yml ├── documentation ├── ADD │ ├── ArchitecturalDesignDocument.pdf │ ├── ArchitecturalDesignDocument.tex │ ├── Demo2Architecture.jpg │ ├── Demo3Architecture.jpg │ ├── Demo4Architecture.jpg │ ├── cover.tex │ └── images │ │ ├── domain-pulse-deployment-p2.png │ │ └── domain-pulse-deployment.drawio.png ├── Coding Standards │ ├── CodingStandards.pdf │ ├── CodingStandards.tex │ └── cover.tex ├── Deployment_diagram.pdf ├── Images │ ├── DBDesign.jpg │ ├── UC 2.1.png │ ├── UC 2.2.png │ ├── UC 2.3.png │ ├── UC 2.4.png │ ├── UC 2.5.png │ ├── UC2.2.1.png │ ├── UC2.2.2.png │ ├── UC2.2.3.png │ ├── UC2.2.4.png │ ├── UC2.2.5.png │ ├── archDiagram.png │ ├── cadLogo.png │ ├── classDiagram.png │ ├── classDiagram2.jpg │ ├── databaseDesignPic.png │ ├── dpLogo.png │ ├── uc1.1.png │ ├── uc1.2.png │ ├── uc1.3.png │ ├── uc1.4.png │ └── uc1.5.png ├── Initial_Sentiment_Analysis_Breakdown.pdf ├── Prize Motivations │ ├── Architectural_Awareness_-_Domain_Pulse.pdf │ ├── DevOps_Excellence_-_Domain_Pulse.pdf │ ├── Fit_for_Purpose_-_Domain_Pulse.pdf │ └── Software_Engineering_Excellence_-Domain_Pulse.pdf ├── README.md ├── Research_Domain_Pulse.pdf ├── Research_Domain_Pulse_Demo4.pdf ├── SRS │ ├── Version 1 │ │ ├── SRS.pdf │ │ ├── SRS.tex │ │ └── cover.tex │ ├── Version 2 │ │ ├── SRS.pdf │ │ ├── SRS.tex │ │ └── cover.tex │ ├── Version 3 │ │ ├── SRS.pdf │ │ ├── SRS.tex │ │ └── cover.tex │ └── Version 4 (Demo 4) │ │ ├── SRS.pdf │ │ ├── SRS.tex │ │ └── cover.tex ├── Technical Installation Manual │ ├── cover.tex │ ├── technical-installation-manual.out │ ├── technical-installation-manual.pdf │ └── technical-installation-manual.tex ├── Testing Policy │ ├── Amount of clicks for relevant actions-2.png │ ├── Average Time vs Maximum Required Time.png │ ├── Cyclomatic.png │ ├── GeneralAccuracy.png │ ├── How easy the website is to use.png │ ├── Maintainability.png │ ├── Maximum Time vs Maximum Required Time.png │ ├── Overall rating of the website.png │ ├── PerfTable.png │ ├── PositiveAndNegative.png │ ├── Scalability.png │ ├── Screenshot 2023-09-27 215821.png │ ├── TestingPolicy.out │ ├── TestingPolicy.pdf │ ├── TestingPolicy.tex │ ├── Testing_Assistance_Domain_Pulse.pdf │ ├── UTR.pdf │ ├── codecovReport.png │ ├── cover.tex │ ├── piechart.png │ ├── table.png │ └── table2.png └── User Manual │ ├── Version 1 │ └── User_Manual.pdf │ ├── Version 2 │ ├── Domain Pulse User Manual (1).pdf │ ├── cover.tex │ ├── manual.pdf │ └── manual.tex │ └── Version 3 (Demo 4) │ └── Domain_Pulse_User_Manual_V3.pdf ├── frontend ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── cypress.config.ts ├── cypress │ ├── e2e │ │ ├── accountsManage.cy.ts │ │ ├── dashboard.cy.ts │ │ ├── login.cy.ts │ │ └── spec.cy.ts │ ├── fixtures │ │ ├── example.json │ │ └── stock-profile-pic.jpg │ ├── support │ │ ├── commands.ts │ │ └── e2e.ts │ └── tsconfig.json ├── env-config.js ├── info-page │ ├── css │ │ ├── animate.css │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap.min.css │ │ ├── coloring.css │ │ ├── colors │ │ │ ├── scheme-01.css │ │ │ ├── scheme-02.css │ │ │ ├── scheme-03.css │ │ │ └── scheme-04.css │ │ ├── jpreloader.css │ │ ├── jquery.countdown.css │ │ ├── magnific-popup.css │ │ ├── owl.carousel.css │ │ ├── owl.theme.css │ │ ├── owl.transitions.css │ │ ├── rev-settings.css │ │ ├── style.css │ │ └── supersized.css │ ├── fonts │ │ ├── elegant_font │ │ │ ├── HTML_CSS │ │ │ │ ├── fonts │ │ │ │ │ ├── ElegantIcons.eot │ │ │ │ │ ├── ElegantIcons.svg │ │ │ │ │ ├── ElegantIcons.ttf │ │ │ │ │ └── ElegantIcons.woff │ │ │ │ ├── index.html │ │ │ │ ├── lte-ie7.js │ │ │ │ └── style.css │ │ │ ├── Licensing │ │ │ │ ├── gpl_license.txt │ │ │ │ └── mit_license.txt │ │ │ └── images │ │ │ │ ├── PNG │ │ │ │ ├── arrow-up-down.png │ │ │ │ ├── arrow_back.png │ │ │ │ ├── arrow_carrot-2down.png │ │ │ │ ├── arrow_carrot-2down_alt2.png │ │ │ │ ├── arrow_carrot-2dwnn_alt.png │ │ │ │ ├── arrow_carrot-2left.png │ │ │ │ ├── arrow_carrot-2left_alt.png │ │ │ │ ├── arrow_carrot-2left_alt2.png │ │ │ │ ├── arrow_carrot-2right.png │ │ │ │ ├── arrow_carrot-2right_alt.png │ │ │ │ ├── arrow_carrot-2right_alt2.png │ │ │ │ ├── arrow_carrot-2up.png │ │ │ │ ├── arrow_carrot-2up_alt.png │ │ │ │ ├── arrow_carrot-2up_alt2.png │ │ │ │ ├── arrow_carrot-down.png │ │ │ │ ├── arrow_carrot-down_alt.png │ │ │ │ ├── arrow_carrot-down_alt2.png │ │ │ │ ├── arrow_carrot-left.png │ │ │ │ ├── arrow_carrot-left_alt.png │ │ │ │ ├── arrow_carrot-left_alt2.png │ │ │ │ ├── arrow_carrot-right.png │ │ │ │ ├── arrow_carrot-right_alt.png │ │ │ │ ├── arrow_carrot-right_alt2.png │ │ │ │ ├── arrow_carrot-up.png │ │ │ │ ├── arrow_carrot-up_alt2.png │ │ │ │ ├── arrow_carrot_up_alt.png │ │ │ │ ├── arrow_condense.png │ │ │ │ ├── arrow_condense_alt.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_alt.png │ │ │ │ ├── arrow_expand.png │ │ │ │ ├── arrow_expand_alt.png │ │ │ │ ├── arrow_expand_alt2.png │ │ │ │ ├── arrow_expand_alt3.png │ │ │ │ ├── arrow_left-down.png │ │ │ │ ├── arrow_left-down_alt.png │ │ │ │ ├── arrow_left-right.png │ │ │ │ ├── arrow_left-right_alt.png │ │ │ │ ├── arrow_left-up.png │ │ │ │ ├── arrow_left-up_alt.png │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_left_alt.png │ │ │ │ ├── arrow_move.png │ │ │ │ ├── arrow_right-down.png │ │ │ │ ├── arrow_right-down_alt.png │ │ │ │ ├── arrow_right-up.png │ │ │ │ ├── arrow_right-up_alt.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_alt.png │ │ │ │ ├── arrow_triangle-down.png │ │ │ │ ├── arrow_triangle-down_alt.png │ │ │ │ ├── arrow_triangle-down_alt2.png │ │ │ │ ├── arrow_triangle-left.png │ │ │ │ ├── arrow_triangle-left_alt.png │ │ │ │ ├── arrow_triangle-left_alt2.png │ │ │ │ ├── arrow_triangle-right.png │ │ │ │ ├── arrow_triangle-right_alt.png │ │ │ │ ├── arrow_triangle-right_alt2.png │ │ │ │ ├── arrow_triangle-up.png │ │ │ │ ├── arrow_triangle-up_alt.png │ │ │ │ ├── arrow_triangle-up_alt2.png │ │ │ │ ├── arrow_up-down_alt.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── arrow_up_alt.png │ │ │ │ ├── icon_adjust-horiz.png │ │ │ │ ├── icon_adjust-vert.png │ │ │ │ ├── icon_archive.png │ │ │ │ ├── icon_archive_alt.png │ │ │ │ ├── icon_bag.png │ │ │ │ ├── icon_bag_alt.png │ │ │ │ ├── icon_balance.png │ │ │ │ ├── icon_blocked.png │ │ │ │ ├── icon_book.png │ │ │ │ ├── icon_book_alt.png │ │ │ │ ├── icon_box-checked.png │ │ │ │ ├── icon_box-empty.png │ │ │ │ ├── icon_box-selected.png │ │ │ │ ├── icon_briefcase.png │ │ │ │ ├── icon_briefcase_alt.png │ │ │ │ ├── icon_building.png │ │ │ │ ├── icon_building_alt.png │ │ │ │ ├── icon_calculator_alt.png │ │ │ │ ├── icon_calendar.png │ │ │ │ ├── icon_calulator.png │ │ │ │ ├── icon_camera.png │ │ │ │ ├── icon_camera_alt.png │ │ │ │ ├── icon_cart.png │ │ │ │ ├── icon_cart_alt.png │ │ │ │ ├── icon_chat.png │ │ │ │ ├── icon_chat_alt.png │ │ │ │ ├── icon_check.png │ │ │ │ ├── icon_check_alt.png │ │ │ │ ├── icon_check_alt2.png │ │ │ │ ├── icon_circle-empty.png │ │ │ │ ├── icon_circle-slelected.png │ │ │ │ ├── icon_clipboard.png │ │ │ │ ├── icon_clock.png │ │ │ │ ├── icon_clock_alt.png │ │ │ │ ├── icon_close.png │ │ │ │ ├── icon_close_alt.png │ │ │ │ ├── icon_close_alt2.png │ │ │ │ ├── icon_cloud-download.png │ │ │ │ ├── icon_cloud-download_alt.png │ │ │ │ ├── icon_cloud-upload.png │ │ │ │ ├── icon_cloud-upload_alt.png │ │ │ │ ├── icon_cloud.png │ │ │ │ ├── icon_cloud_alt.png │ │ │ │ ├── icon_cog.png │ │ │ │ ├── icon_cogs.png │ │ │ │ ├── icon_comment.png │ │ │ │ ├── icon_comment_alt.png │ │ │ │ ├── icon_compass.png │ │ │ │ ├── icon_compass_alt.png │ │ │ │ ├── icon_cone.png │ │ │ │ ├── icon_cone_alt.png │ │ │ │ ├── icon_contacts.png │ │ │ │ ├── icon_contacts_alt.png │ │ │ │ ├── icon_creditcard.png │ │ │ │ ├── icon_currency.png │ │ │ │ ├── icon_currency_alt.png │ │ │ │ ├── icon_cursor.png │ │ │ │ ├── icon_cursor_alt.png │ │ │ │ ├── icon_datareport.png │ │ │ │ ├── icon_datareport_alt.png │ │ │ │ ├── icon_desktop.png │ │ │ │ ├── icon_dislike.png │ │ │ │ ├── icon_dislike_alt.png │ │ │ │ ├── icon_document.png │ │ │ │ ├── icon_document_alt.png │ │ │ │ ├── icon_documents.png │ │ │ │ ├── icon_documents_alt.png │ │ │ │ ├── icon_download.png │ │ │ │ ├── icon_drawer.png │ │ │ │ ├── icon_drawer_alt.png │ │ │ │ ├── icon_drive.png │ │ │ │ ├── icon_drive_alt.png │ │ │ │ ├── icon_easel.png │ │ │ │ ├── icon_easel_alt.png │ │ │ │ ├── icon_error-circle.png │ │ │ │ ├── icon_error-circle_alt.png │ │ │ │ ├── icon_error-oct.png │ │ │ │ ├── icon_error-oct_alt.png │ │ │ │ ├── icon_error-triangle.png │ │ │ │ ├── icon_error-triangle_alt.png │ │ │ │ ├── icon_film.png │ │ │ │ ├── icon_floppy.png │ │ │ │ ├── icon_floppy_alt.png │ │ │ │ ├── icon_flowchart.png │ │ │ │ ├── icon_flowchart_alt.png │ │ │ │ ├── icon_folder-add.png │ │ │ │ ├── icon_folder-add_alt.png │ │ │ │ ├── icon_folder-alt.png │ │ │ │ ├── icon_folder-open.png │ │ │ │ ├── icon_folder-open_alt.png │ │ │ │ ├── icon_folder.png │ │ │ │ ├── icon_folder_download.png │ │ │ │ ├── icon_folder_upload.png │ │ │ │ ├── icon_genius.png │ │ │ │ ├── icon_gift.png │ │ │ │ ├── icon_gift_alt.png │ │ │ │ ├── icon_globe-2.png │ │ │ │ ├── icon_globe.png │ │ │ │ ├── icon_globe_alt.png │ │ │ │ ├── icon_grid-2x2.png │ │ │ │ ├── icon_grid-3x3.png │ │ │ │ ├── icon_group.png │ │ │ │ ├── icon_headphones.png │ │ │ │ ├── icon_heart.png │ │ │ │ ├── icon_heart_alt.png │ │ │ │ ├── icon_hourglass.png │ │ │ │ ├── icon_house.png │ │ │ │ ├── icon_house_alt.png │ │ │ │ ├── icon_id-2.png │ │ │ │ ├── icon_id-2_alt.png │ │ │ │ ├── icon_id.png │ │ │ │ ├── icon_id_alt.png │ │ │ │ ├── icon_image.png │ │ │ │ ├── icon_images.png │ │ │ │ ├── icon_info.png │ │ │ │ ├── icon_info_alt.png │ │ │ │ ├── icon_key.png │ │ │ │ ├── icon_key_alt.png │ │ │ │ ├── icon_laptop.png │ │ │ │ ├── icon_lifesaver.png │ │ │ │ ├── icon_lightbulb.png │ │ │ │ ├── icon_lightbulb_alt.png │ │ │ │ ├── icon_like.png │ │ │ │ ├── icon_like_alt.png │ │ │ │ ├── icon_link.png │ │ │ │ ├── icon_link_alt.png │ │ │ │ ├── icon_loading.png │ │ │ │ ├── icon_lock-open.png │ │ │ │ ├── icon_lock-open_alt.png │ │ │ │ ├── icon_lock.png │ │ │ │ ├── icon_lock_alt.png │ │ │ │ ├── icon_mail.png │ │ │ │ ├── icon_mail_alt.png │ │ │ │ ├── icon_map.png │ │ │ │ ├── icon_map_alt.png │ │ │ │ ├── icon_menu-circle_alt.png │ │ │ │ ├── icon_menu-circle_alt2.png │ │ │ │ ├── icon_menu-square_alt.png │ │ │ │ ├── icon_menu-square_alt2.png │ │ │ │ ├── icon_menu.png │ │ │ │ ├── icon_mic.png │ │ │ │ ├── icon_mic_alt.png │ │ │ │ ├── icon_minus-06.png │ │ │ │ ├── icon_minus-box.png │ │ │ │ ├── icon_minus_alt.png │ │ │ │ ├── icon_minus_alt2.png │ │ │ │ ├── icon_mobile.png │ │ │ │ ├── icon_mug.png │ │ │ │ ├── icon_mug_alt.png │ │ │ │ ├── icon_music.png │ │ │ │ ├── icon_ol.png │ │ │ │ ├── icon_paperclip.png │ │ │ │ ├── icon_pause.png │ │ │ │ ├── icon_pause_alt.png │ │ │ │ ├── icon_pause_alt2.png │ │ │ │ ├── icon_pencil-edit.png │ │ │ │ ├── icon_pencil-edit_alt.png │ │ │ │ ├── icon_pencil.png │ │ │ │ ├── icon_pencil_alt.png │ │ │ │ ├── icon_pens.png │ │ │ │ ├── icon_pens_alt.png │ │ │ │ ├── icon_percent.png │ │ │ │ ├── icon_percent_alt.png │ │ │ │ ├── icon_phone.png │ │ │ │ ├── icon_piechart.png │ │ │ │ ├── icon_pin.png │ │ │ │ ├── icon_pin_alt.png │ │ │ │ ├── icon_plus-box.png │ │ │ │ ├── icon_plus.png │ │ │ │ ├── icon_plus_alt.png │ │ │ │ ├── icon_plus_alt2.png │ │ │ │ ├── icon_printer-alt.png │ │ │ │ ├── icon_printer.png │ │ │ │ ├── icon_profile.png │ │ │ │ ├── icon_pushpin.png │ │ │ │ ├── icon_pushpin_alt.png │ │ │ │ ├── icon_puzzle.png │ │ │ │ ├── icon_puzzle_alt.png │ │ │ │ ├── icon_question.png │ │ │ │ ├── icon_question_alt.png │ │ │ │ ├── icon_question_alt2.png │ │ │ │ ├── icon_quotations.png │ │ │ │ ├── icon_quotations_alt.png │ │ │ │ ├── icon_quotations_alt2.png │ │ │ │ ├── icon_refresh.png │ │ │ │ ├── icon_ribbon.png │ │ │ │ ├── icon_ribbon_alt.png │ │ │ │ ├── icon_rook.png │ │ │ │ ├── icon_search.png │ │ │ │ ├── icon_search2.png │ │ │ │ ├── icon_search_alt.png │ │ │ │ ├── icon_shield.png │ │ │ │ ├── icon_shield_alt.png │ │ │ │ ├── icon_star-half.png │ │ │ │ ├── icon_star-half_alt.png │ │ │ │ ├── icon_star.png │ │ │ │ ├── icon_star_alt.png │ │ │ │ ├── icon_stop.png │ │ │ │ ├── icon_stop_alt.png │ │ │ │ ├── icon_stop_alt2.png │ │ │ │ ├── icon_table.png │ │ │ │ ├── icon_tablet.png │ │ │ │ ├── icon_tag.png │ │ │ │ ├── icon_tag_alt.png │ │ │ │ ├── icon_tags.png │ │ │ │ ├── icon_tags_alt.png │ │ │ │ ├── icon_target.png │ │ │ │ ├── icon_tool.png │ │ │ │ ├── icon_toolbox.png │ │ │ │ ├── icon_toolbox_alt.png │ │ │ │ ├── icon_tools.png │ │ │ │ ├── icon_trash.png │ │ │ │ ├── icon_trash_alt.png │ │ │ │ ├── icon_ul.png │ │ │ │ ├── icon_upload.png │ │ │ │ ├── icon_vol-mute.png │ │ │ │ ├── icon_vol-mute_alt.png │ │ │ │ ├── icon_volume-high.png │ │ │ │ ├── icon_volume-high_alt.png │ │ │ │ ├── icon_volume-low.png │ │ │ │ ├── icon_volume-low_alt.png │ │ │ │ ├── icon_wallet.png │ │ │ │ ├── icon_wallet_alt.png │ │ │ │ ├── icon_zoom-in.png │ │ │ │ ├── icon_zoom-in_alt.png │ │ │ │ ├── icon_zoom-out.png │ │ │ │ ├── icon_zoom-out_alt.png │ │ │ │ ├── social_blogger.png │ │ │ │ ├── social_blogger_circle.png │ │ │ │ ├── social_blogger_square.png │ │ │ │ ├── social_delicious.png │ │ │ │ ├── social_delicious_circle.png │ │ │ │ ├── social_delicious_square.png │ │ │ │ ├── social_deviantart.png │ │ │ │ ├── social_deviantart_circle.png │ │ │ │ ├── social_deviantart_square.png │ │ │ │ ├── social_dribbble.png │ │ │ │ ├── social_dribbble_circle.png │ │ │ │ ├── social_dribbble_square.png │ │ │ │ ├── social_facebook.png │ │ │ │ ├── social_facebook_circle.png │ │ │ │ ├── social_facebook_square.png │ │ │ │ ├── social_flickr.png │ │ │ │ ├── social_flickr_circle.png │ │ │ │ ├── social_flickr_square.png │ │ │ │ ├── social_googledrive.png │ │ │ │ ├── social_googledrive_alt2.png │ │ │ │ ├── social_googledrive_square.png │ │ │ │ ├── social_googleplus.png │ │ │ │ ├── social_googleplus_circle.png │ │ │ │ ├── social_googleplus_square.png │ │ │ │ ├── social_instagram.png │ │ │ │ ├── social_instagram_circle.png │ │ │ │ ├── social_instagram_square.png │ │ │ │ ├── social_linkedin.png │ │ │ │ ├── social_linkedin_circle.png │ │ │ │ ├── social_linkedin_square.png │ │ │ │ ├── social_myspace.png │ │ │ │ ├── social_myspace_circle.png │ │ │ │ ├── social_myspace_square.png │ │ │ │ ├── social_picassa.png │ │ │ │ ├── social_picassa_circle.png │ │ │ │ ├── social_picassa_square.png │ │ │ │ ├── social_pinterest.png │ │ │ │ ├── social_pinterest_circle.png │ │ │ │ ├── social_pinterest_square.png │ │ │ │ ├── social_rss.png │ │ │ │ ├── social_rss_circle.png │ │ │ │ ├── social_rss_square.png │ │ │ │ ├── social_share.png │ │ │ │ ├── social_share_circle.png │ │ │ │ ├── social_share_square.png │ │ │ │ ├── social_skype.png │ │ │ │ ├── social_skype_circle.png │ │ │ │ ├── social_skype_square.png │ │ │ │ ├── social_spotify.png │ │ │ │ ├── social_spotify_circle.png │ │ │ │ ├── social_spotify_square.png │ │ │ │ ├── social_stumbleupon_circle.png │ │ │ │ ├── social_stumbleupon_square.png │ │ │ │ ├── social_tumbleupon.png │ │ │ │ ├── social_tumblr.png │ │ │ │ ├── social_tumblr_circle.png │ │ │ │ ├── social_tumblr_square.png │ │ │ │ ├── social_twitter.png │ │ │ │ ├── social_twitter_circle.png │ │ │ │ ├── social_twitter_square.png │ │ │ │ ├── social_vimeo.png │ │ │ │ ├── social_vimeo_circle.png │ │ │ │ ├── social_vimeo_square.png │ │ │ │ ├── social_wordpress.png │ │ │ │ ├── social_wordpress_circle.png │ │ │ │ ├── social_wordpress_square.png │ │ │ │ ├── social_youtube.png │ │ │ │ ├── social_youtube_circle.png │ │ │ │ └── social_youtube_square.png │ │ │ │ ├── SVG │ │ │ │ ├── arrow-up-down.svg │ │ │ │ ├── arrow_back.svg │ │ │ │ ├── arrow_carrot-2down.svg │ │ │ │ ├── arrow_carrot-2down_alt2.svg │ │ │ │ ├── arrow_carrot-2dwnn_alt.svg │ │ │ │ ├── arrow_carrot-2left.svg │ │ │ │ ├── arrow_carrot-2left_alt.svg │ │ │ │ ├── arrow_carrot-2left_alt2.svg │ │ │ │ ├── arrow_carrot-2right.svg │ │ │ │ ├── arrow_carrot-2right_alt.svg │ │ │ │ ├── arrow_carrot-2right_alt2.svg │ │ │ │ ├── arrow_carrot-2up.svg │ │ │ │ ├── arrow_carrot-2up_alt.svg │ │ │ │ ├── arrow_carrot-2up_alt2.svg │ │ │ │ ├── arrow_carrot-down.svg │ │ │ │ ├── arrow_carrot-down_alt.svg │ │ │ │ ├── arrow_carrot-down_alt2.svg │ │ │ │ ├── arrow_carrot-left.svg │ │ │ │ ├── arrow_carrot-left_alt.svg │ │ │ │ ├── arrow_carrot-left_alt2.svg │ │ │ │ ├── arrow_carrot-right.svg │ │ │ │ ├── arrow_carrot-right_alt.svg │ │ │ │ ├── arrow_carrot-right_alt2.svg │ │ │ │ ├── arrow_carrot-up.svg │ │ │ │ ├── arrow_carrot-up_alt2.svg │ │ │ │ ├── arrow_carrot_up_alt.svg │ │ │ │ ├── arrow_condense.svg │ │ │ │ ├── arrow_condense_alt.svg │ │ │ │ ├── arrow_down.svg │ │ │ │ ├── arrow_down_alt.svg │ │ │ │ ├── arrow_expand.svg │ │ │ │ ├── arrow_expand_alt.svg │ │ │ │ ├── arrow_expand_alt2.svg │ │ │ │ ├── arrow_expand_alt3.svg │ │ │ │ ├── arrow_left-down.svg │ │ │ │ ├── arrow_left-down_alt.svg │ │ │ │ ├── arrow_left-right.svg │ │ │ │ ├── arrow_left-right_alt.svg │ │ │ │ ├── arrow_left-up.svg │ │ │ │ ├── arrow_left-up_alt.svg │ │ │ │ ├── arrow_left.svg │ │ │ │ ├── arrow_left_alt.svg │ │ │ │ ├── arrow_move.svg │ │ │ │ ├── arrow_right-down.svg │ │ │ │ ├── arrow_right-down_alt.svg │ │ │ │ ├── arrow_right-up.svg │ │ │ │ ├── arrow_right-up_alt.svg │ │ │ │ ├── arrow_right.svg │ │ │ │ ├── arrow_right_alt.svg │ │ │ │ ├── arrow_triangle-down.svg │ │ │ │ ├── arrow_triangle-down_alt.svg │ │ │ │ ├── arrow_triangle-down_alt2.svg │ │ │ │ ├── arrow_triangle-left.svg │ │ │ │ ├── arrow_triangle-left_alt.svg │ │ │ │ ├── arrow_triangle-left_alt2.svg │ │ │ │ ├── arrow_triangle-right.svg │ │ │ │ ├── arrow_triangle-right_alt.svg │ │ │ │ ├── arrow_triangle-right_alt2.svg │ │ │ │ ├── arrow_triangle-up.svg │ │ │ │ ├── arrow_triangle-up_alt.svg │ │ │ │ ├── arrow_triangle-up_alt2.svg │ │ │ │ ├── arrow_up-down_alt.svg │ │ │ │ ├── arrow_up.svg │ │ │ │ ├── arrow_up_alt.svg │ │ │ │ ├── icon_adjust-horiz.svg │ │ │ │ ├── icon_adjust-vert.svg │ │ │ │ ├── icon_archive.svg │ │ │ │ ├── icon_archive_alt.svg │ │ │ │ ├── icon_bag.svg │ │ │ │ ├── icon_bag_alt.svg │ │ │ │ ├── icon_balance.svg │ │ │ │ ├── icon_blocked.svg │ │ │ │ ├── icon_book.svg │ │ │ │ ├── icon_book_alt.svg │ │ │ │ ├── icon_box-checked.svg │ │ │ │ ├── icon_box-empty.svg │ │ │ │ ├── icon_box-selected.svg │ │ │ │ ├── icon_briefcase.svg │ │ │ │ ├── icon_briefcase_alt.svg │ │ │ │ ├── icon_building.svg │ │ │ │ ├── icon_building_alt.svg │ │ │ │ ├── icon_calculator_alt.svg │ │ │ │ ├── icon_calendar.svg │ │ │ │ ├── icon_calulator.svg │ │ │ │ ├── icon_camera.svg │ │ │ │ ├── icon_camera_alt.svg │ │ │ │ ├── icon_cart.svg │ │ │ │ ├── icon_cart_alt.svg │ │ │ │ ├── icon_chat.svg │ │ │ │ ├── icon_chat_alt.svg │ │ │ │ ├── icon_check.svg │ │ │ │ ├── icon_check_alt.svg │ │ │ │ ├── icon_check_alt2.svg │ │ │ │ ├── icon_circle-empty.svg │ │ │ │ ├── icon_circle-slelected.svg │ │ │ │ ├── icon_clipboard.svg │ │ │ │ ├── icon_clock.svg │ │ │ │ ├── icon_clock_alt.svg │ │ │ │ ├── icon_close.svg │ │ │ │ ├── icon_close_alt.svg │ │ │ │ ├── icon_close_alt2.svg │ │ │ │ ├── icon_cloud-download.svg │ │ │ │ ├── icon_cloud-download_alt.svg │ │ │ │ ├── icon_cloud-upload.svg │ │ │ │ ├── icon_cloud-upload_alt.svg │ │ │ │ ├── icon_cloud.svg │ │ │ │ ├── icon_cloud_alt.svg │ │ │ │ ├── icon_cog.svg │ │ │ │ ├── icon_cogs.svg │ │ │ │ ├── icon_comment.svg │ │ │ │ ├── icon_comment_alt.svg │ │ │ │ ├── icon_compass.svg │ │ │ │ ├── icon_compass_alt.svg │ │ │ │ ├── icon_cone.svg │ │ │ │ ├── icon_cone_alt.svg │ │ │ │ ├── icon_contacts.svg │ │ │ │ ├── icon_contacts_alt.svg │ │ │ │ ├── icon_creditcard.svg │ │ │ │ ├── icon_currency.svg │ │ │ │ ├── icon_currency_alt.svg │ │ │ │ ├── icon_cursor.svg │ │ │ │ ├── icon_cursor_alt.svg │ │ │ │ ├── icon_datareport.svg │ │ │ │ ├── icon_datareport_alt.svg │ │ │ │ ├── icon_desktop.svg │ │ │ │ ├── icon_dislike.svg │ │ │ │ ├── icon_dislike_alt.svg │ │ │ │ ├── icon_document.svg │ │ │ │ ├── icon_document_alt.svg │ │ │ │ ├── icon_documents.svg │ │ │ │ ├── icon_documents_alt.svg │ │ │ │ ├── icon_download.svg │ │ │ │ ├── icon_drawer.svg │ │ │ │ ├── icon_drawer_alt.svg │ │ │ │ ├── icon_drive.svg │ │ │ │ ├── icon_drive_alt.svg │ │ │ │ ├── icon_easel.svg │ │ │ │ ├── icon_easel_alt.svg │ │ │ │ ├── icon_error-circle.svg │ │ │ │ ├── icon_error-circle_alt.svg │ │ │ │ ├── icon_error-oct.svg │ │ │ │ ├── icon_error-oct_alt.svg │ │ │ │ ├── icon_error-triangle.svg │ │ │ │ ├── icon_error-triangle_alt.svg │ │ │ │ ├── icon_film.svg │ │ │ │ ├── icon_floppy.svg │ │ │ │ ├── icon_floppy_alt.svg │ │ │ │ ├── icon_flowchart.svg │ │ │ │ ├── icon_flowchart_alt.svg │ │ │ │ ├── icon_folder-add.svg │ │ │ │ ├── icon_folder-add_alt.svg │ │ │ │ ├── icon_folder-alt.svg │ │ │ │ ├── icon_folder-open.svg │ │ │ │ ├── icon_folder-open_alt.svg │ │ │ │ ├── icon_folder.svg │ │ │ │ ├── icon_folder_download.svg │ │ │ │ ├── icon_folder_upload.svg │ │ │ │ ├── icon_genius.svg │ │ │ │ ├── icon_gift.svg │ │ │ │ ├── icon_gift_alt.svg │ │ │ │ ├── icon_globe-2.svg │ │ │ │ ├── icon_globe.svg │ │ │ │ ├── icon_globe_alt.svg │ │ │ │ ├── icon_grid-2x2.svg │ │ │ │ ├── icon_grid-3x3.svg │ │ │ │ ├── icon_group.svg │ │ │ │ ├── icon_headphones.svg │ │ │ │ ├── icon_heart.svg │ │ │ │ ├── icon_heart_alt.svg │ │ │ │ ├── icon_hourglass.svg │ │ │ │ ├── icon_house.svg │ │ │ │ ├── icon_house_alt.svg │ │ │ │ ├── icon_id-2.svg │ │ │ │ ├── icon_id-2_alt.svg │ │ │ │ ├── icon_id.svg │ │ │ │ ├── icon_id_alt.svg │ │ │ │ ├── icon_image.svg │ │ │ │ ├── icon_images.svg │ │ │ │ ├── icon_info.svg │ │ │ │ ├── icon_info_alt.svg │ │ │ │ ├── icon_key.svg │ │ │ │ ├── icon_key_alt.svg │ │ │ │ ├── icon_laptop.svg │ │ │ │ ├── icon_lifesaver.svg │ │ │ │ ├── icon_lightbulb.svg │ │ │ │ ├── icon_lightbulb_alt.svg │ │ │ │ ├── icon_like.svg │ │ │ │ ├── icon_like_alt.svg │ │ │ │ ├── icon_link.svg │ │ │ │ ├── icon_link_alt.svg │ │ │ │ ├── icon_loading.svg │ │ │ │ ├── icon_lock-open.svg │ │ │ │ ├── icon_lock-open_alt.svg │ │ │ │ ├── icon_lock.svg │ │ │ │ ├── icon_lock_alt.svg │ │ │ │ ├── icon_mail.svg │ │ │ │ ├── icon_mail_alt.svg │ │ │ │ ├── icon_map.svg │ │ │ │ ├── icon_map_alt.svg │ │ │ │ ├── icon_menu-circle_alt.svg │ │ │ │ ├── icon_menu-circle_alt2.svg │ │ │ │ ├── icon_menu-square_alt.svg │ │ │ │ ├── icon_menu-square_alt2.svg │ │ │ │ ├── icon_menu.svg │ │ │ │ ├── icon_mic.svg │ │ │ │ ├── icon_mic_alt.svg │ │ │ │ ├── icon_minus-06.svg │ │ │ │ ├── icon_minus-box.svg │ │ │ │ ├── icon_minus_alt.svg │ │ │ │ ├── icon_minus_alt2.svg │ │ │ │ ├── icon_mobile.svg │ │ │ │ ├── icon_mug.svg │ │ │ │ ├── icon_mug_alt.svg │ │ │ │ ├── icon_music.svg │ │ │ │ ├── icon_ol.svg │ │ │ │ ├── icon_paperclip.svg │ │ │ │ ├── icon_pause.svg │ │ │ │ ├── icon_pause_alt.svg │ │ │ │ ├── icon_pause_alt2.svg │ │ │ │ ├── icon_pencil-edit.svg │ │ │ │ ├── icon_pencil-edit_alt.svg │ │ │ │ ├── icon_pencil.svg │ │ │ │ ├── icon_pencil_alt.svg │ │ │ │ ├── icon_pens.svg │ │ │ │ ├── icon_pens_alt.svg │ │ │ │ ├── icon_percent.svg │ │ │ │ ├── icon_percent_alt.svg │ │ │ │ ├── icon_phone.svg │ │ │ │ ├── icon_piechart.svg │ │ │ │ ├── icon_pin.svg │ │ │ │ ├── icon_pin_alt.svg │ │ │ │ ├── icon_plus-box.svg │ │ │ │ ├── icon_plus.svg │ │ │ │ ├── icon_plus_alt.svg │ │ │ │ ├── icon_plus_alt2.svg │ │ │ │ ├── icon_printer-alt.svg │ │ │ │ ├── icon_printer.svg │ │ │ │ ├── icon_profile.svg │ │ │ │ ├── icon_pushpin.svg │ │ │ │ ├── icon_pushpin_alt.svg │ │ │ │ ├── icon_puzzle.svg │ │ │ │ ├── icon_puzzle_alt.svg │ │ │ │ ├── icon_question.svg │ │ │ │ ├── icon_question_alt.svg │ │ │ │ ├── icon_question_alt2.svg │ │ │ │ ├── icon_quotations.svg │ │ │ │ ├── icon_quotations_alt.svg │ │ │ │ ├── icon_quotations_alt2.svg │ │ │ │ ├── icon_refresh.svg │ │ │ │ ├── icon_ribbon.svg │ │ │ │ ├── icon_ribbon_alt.svg │ │ │ │ ├── icon_rook.svg │ │ │ │ ├── icon_search.svg │ │ │ │ ├── icon_search2.svg │ │ │ │ ├── icon_search_alt.svg │ │ │ │ ├── icon_shield.svg │ │ │ │ ├── icon_shield_alt.svg │ │ │ │ ├── icon_star-half.svg │ │ │ │ ├── icon_star_alt.svg │ │ │ │ ├── icon_stop.svg │ │ │ │ ├── icon_stop_alt.svg │ │ │ │ ├── icon_stop_alt2.svg │ │ │ │ ├── icon_table.svg │ │ │ │ ├── icon_tablet.svg │ │ │ │ ├── icon_tag.svg │ │ │ │ ├── icon_tag_alt.svg │ │ │ │ ├── icon_tags.svg │ │ │ │ ├── icon_tags_alt.svg │ │ │ │ ├── icon_target.svg │ │ │ │ ├── icon_tool.svg │ │ │ │ ├── icon_toolbox.svg │ │ │ │ ├── icon_toolbox_alt.svg │ │ │ │ ├── icon_tools.svg │ │ │ │ ├── icon_trash.svg │ │ │ │ ├── icon_trash_alt.svg │ │ │ │ ├── icon_ul.svg │ │ │ │ ├── icon_upload.svg │ │ │ │ ├── icon_vol-mute.svg │ │ │ │ ├── icon_vol-mute_alt.svg │ │ │ │ ├── icon_volume-high.svg │ │ │ │ ├── icon_volume-high_alt.svg │ │ │ │ ├── icon_volume-low.svg │ │ │ │ ├── icon_volume-low_alt.svg │ │ │ │ ├── icon_wallet.svg │ │ │ │ ├── icon_wallet_alt.svg │ │ │ │ ├── icon_zoom-in.svg │ │ │ │ ├── icon_zoom-in_alt.svg │ │ │ │ ├── icon_zoom-out.svg │ │ │ │ ├── icon_zoom-out_alt.svg │ │ │ │ ├── social_blogger.svg │ │ │ │ ├── social_blogger_circle.svg │ │ │ │ ├── social_blogger_square.svg │ │ │ │ ├── social_delicious.svg │ │ │ │ ├── social_delicious_circle.svg │ │ │ │ ├── social_delicious_square.svg │ │ │ │ ├── social_deviantart.svg │ │ │ │ ├── social_deviantart_circle.svg │ │ │ │ ├── social_deviantart_square.svg │ │ │ │ ├── social_dribbble.svg │ │ │ │ ├── social_dribbble_circle.svg │ │ │ │ ├── social_dribbble_square.svg │ │ │ │ ├── social_facebook.svg │ │ │ │ ├── social_facebook_circle.svg │ │ │ │ ├── social_facebook_square.svg │ │ │ │ ├── social_flickr.svg │ │ │ │ ├── social_flickr_circle.svg │ │ │ │ ├── social_flickr_square.svg │ │ │ │ ├── social_googledrive.svg │ │ │ │ ├── social_googledrive_alt2.svg │ │ │ │ ├── social_googledrive_square.svg │ │ │ │ ├── social_googleplus.svg │ │ │ │ ├── social_googleplus_circle.svg │ │ │ │ ├── social_googleplus_square.svg │ │ │ │ ├── social_instagram.svg │ │ │ │ ├── social_instagram_circle.svg │ │ │ │ ├── social_instagram_square.svg │ │ │ │ ├── social_linkedin.svg │ │ │ │ ├── social_linkedin_circle.svg │ │ │ │ ├── social_linkedin_square.svg │ │ │ │ ├── social_myspace.svg │ │ │ │ ├── social_myspace_circle.svg │ │ │ │ ├── social_myspace_square.svg │ │ │ │ ├── social_picassa.svg │ │ │ │ ├── social_picassa_circle.svg │ │ │ │ ├── social_picassa_square.svg │ │ │ │ ├── social_pinterest.svg │ │ │ │ ├── social_pinterest_circle.svg │ │ │ │ ├── social_pinterest_square.svg │ │ │ │ ├── social_rss.svg │ │ │ │ ├── social_rss_circle.svg │ │ │ │ ├── social_rss_square.svg │ │ │ │ ├── social_share.svg │ │ │ │ ├── social_share_circle.svg │ │ │ │ ├── social_share_square.svg │ │ │ │ ├── social_skype.svg │ │ │ │ ├── social_skype_circle.svg │ │ │ │ ├── social_skype_square.svg │ │ │ │ ├── social_spotify.svg │ │ │ │ ├── social_spotify_circle.svg │ │ │ │ ├── social_spotify_square.svg │ │ │ │ ├── social_stumbleupon_circle.svg │ │ │ │ ├── social_stumbleupon_square.svg │ │ │ │ ├── social_tumbleupon.svg │ │ │ │ ├── social_tumblr.svg │ │ │ │ ├── social_tumblr_circle.svg │ │ │ │ ├── social_tumblr_square.svg │ │ │ │ ├── social_twitter.svg │ │ │ │ ├── social_twitter_circle.svg │ │ │ │ ├── social_twitter_square.svg │ │ │ │ ├── social_vimeo.svg │ │ │ │ ├── social_vimeo_circle.svg │ │ │ │ ├── social_vimeo_square.svg │ │ │ │ ├── social_wordpress.svg │ │ │ │ ├── social_wordpress_circle.svg │ │ │ │ ├── social_wordpress_square.svg │ │ │ │ ├── social_youtube.svg │ │ │ │ ├── social_youtube_circle.svg │ │ │ │ └── social_youtube_square.svg │ │ │ │ ├── caden.png │ │ │ │ ├── chris.png │ │ │ │ ├── luke.png │ │ │ │ ├── thomas.png │ │ │ │ └── thuthuka.png │ │ ├── et-line-font │ │ │ ├── Read Me.txt │ │ │ ├── et-line.dev.svg │ │ │ ├── fonts │ │ │ │ ├── et-line.eot │ │ │ │ ├── et-line.svg │ │ │ │ ├── et-line.ttf │ │ │ │ └── et-line.woff │ │ │ ├── index.html │ │ │ ├── lte-ie7.js │ │ │ └── style.css │ │ └── font-awesome │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── images │ │ ├── background │ │ │ ├── 1.jpg │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 1b.png │ │ │ ├── 2.jpg │ │ │ ├── 2.png │ │ │ ├── 3.jpg │ │ │ ├── 3.png │ │ │ ├── 3b.png │ │ │ ├── 3c.png │ │ │ ├── 3d.png │ │ │ ├── 3i.png │ │ │ ├── 4.jpg │ │ │ ├── 4.png │ │ │ ├── 5.jpg │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── dp-logo-bg.png │ │ ├── dp-logo-blue.png │ │ ├── logo-clients │ │ │ ├── 01-symbol_blue-docker-logo.png │ │ │ ├── Ai.png │ │ │ ├── GitHub-Mark.png │ │ │ ├── adobe.png │ │ │ ├── angular.png │ │ │ ├── django-logo-positive.png │ │ │ ├── dpfinal.png │ │ │ ├── mongo-logo.png │ │ │ ├── mongo.svg │ │ │ ├── postgre.png │ │ │ ├── sass2.png │ │ │ └── ytfinal.png │ │ ├── misc │ │ │ ├── 1.png │ │ │ └── laptop-mockup.png │ │ ├── team │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ └── 8.jpg │ │ └── ui │ │ │ ├── arrow-down.png │ │ │ └── arrow-up.png │ ├── index.html │ └── js │ │ ├── app.js │ │ ├── bootstrap.min.js │ │ ├── countdown-custom.js │ │ ├── designesia.js │ │ ├── easing.js │ │ ├── enquire.min.js │ │ ├── html5shiv.js │ │ ├── jquery.countTo.js │ │ ├── jquery.countdown.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.magnific-popup.min.js │ │ ├── jquery.min.js │ │ ├── jquery.plugin.js │ │ ├── jquery.stellar.min.js │ │ ├── map.js │ │ ├── maps.api.js │ │ ├── owl.carousel.js │ │ ├── owl.carousel.min.js │ │ ├── particles.js │ │ ├── supersized.3.2.7.min.js │ │ ├── typed-custom.js │ │ ├── typed.js │ │ ├── validation.js │ │ └── wow.min.js ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── accordion-card │ │ │ ├── accordion.component.html │ │ │ ├── accordion.component.sass │ │ │ ├── accordion.component.spec.ts │ │ │ ├── accordion.component.ts │ │ │ ├── accordion.module.ts │ │ │ └── directives │ │ │ │ ├── accordion-content.directive.ts │ │ │ │ ├── accordion-header.directive.ts │ │ │ │ ├── accordion-item.directive.ts │ │ │ │ └── accordion-title.directive.ts │ │ ├── api.interceptor.ts │ │ ├── app-routing.module.ts │ │ ├── app.actions.ts │ │ ├── app.api.spec.ts │ │ ├── app.api.ts │ │ ├── app.component.html │ │ ├── app.component.sass │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.state.spec.ts │ │ ├── app.state.ts │ │ ├── auth-service.service.spec.ts │ │ ├── auth-service.service.ts │ │ ├── auth.guard.spec.ts │ │ ├── auth.guard.ts │ │ ├── azure-blob-storage.service.spec.ts │ │ ├── azure-blob-storage.service.ts │ │ ├── comments-accordion-card │ │ │ ├── comments-accordion.component.html │ │ │ ├── comments-accordion.component.sass │ │ │ ├── comments-accordion.component.spec.ts │ │ │ ├── comments-accordion.component.ts │ │ │ ├── comments-accordion.module.ts │ │ │ └── directives │ │ │ │ ├── comments-accordion-content.directive.ts │ │ │ │ ├── comments-accordion-header.directive.ts │ │ │ │ ├── comments-accordion-item.directive.ts │ │ │ │ └── comments-accordion-title.directive.ts │ │ ├── comments-view │ │ │ ├── comments-view.component.html │ │ │ ├── comments-view.component.sass │ │ │ ├── comments-view.component.spec.ts │ │ │ └── comments-view.component.ts │ │ ├── graph-selector │ │ │ ├── graph-selector.component.html │ │ │ ├── graph-selector.component.sass │ │ │ ├── graph-selector.component.spec.ts │ │ │ └── graph-selector.component.ts │ │ ├── guest.guard.spec.ts │ │ ├── guest.guard.ts │ │ ├── help-page │ │ │ ├── help-page.component.html │ │ │ ├── help-page.component.sass │ │ │ └── help-page.component.ts │ │ ├── info.guard.spec.ts │ │ ├── info.guard.ts │ │ ├── login-page │ │ │ ├── login-page.component.html │ │ │ ├── login-page.component.sass │ │ │ ├── login-page.component.spec.ts │ │ │ └── login-page.component.ts │ │ ├── main │ │ │ ├── main.component.html │ │ │ ├── main.component.sass │ │ │ ├── main.component.spec.ts │ │ │ └── main.component.ts │ │ ├── modal-container │ │ │ ├── modal-container.component.html │ │ │ ├── modal-container.component.sass │ │ │ ├── modal-container.component.spec.ts │ │ │ └── modal-container.component.ts │ │ ├── register-page │ │ │ ├── register-page.component.html │ │ │ ├── register-page.component.sass │ │ │ ├── register-page.component.spec.ts │ │ │ └── register-page.component.ts │ │ ├── sidebar │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.sass │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ │ ├── source-selector │ │ │ ├── source-selector.component.html │ │ │ ├── source-selector.component.sass │ │ │ ├── source-selector.component.spec.ts │ │ │ └── source-selector.component.ts │ │ ├── statistic-selector │ │ │ ├── statistic-selector.component.html │ │ │ ├── statistic-selector.component.sass │ │ │ ├── statistic-selector.component.spec.ts │ │ │ └── statistic-selector.component.ts │ │ ├── survey-redirect.guard.spec.ts │ │ ├── survey-redirect.guard.ts │ │ ├── tooltip.directive.ts │ │ └── tooltip │ │ │ ├── tooltip.component.css │ │ │ ├── tooltip.component.html │ │ │ └── tooltip.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── Blue-Loading.gif │ │ ├── Centre logo white.svg │ │ ├── Google__G__Logo.svg.png │ │ ├── White-Loading.gif │ │ ├── addSource.png │ │ ├── apple-1-logo-png-transparent.png │ │ ├── cat-1.png │ │ ├── cat-2.png │ │ ├── csv-logo.png │ │ ├── donalds-logo.png │ │ ├── dp-logo-blue.png │ │ ├── dp-logo-white.png │ │ ├── f1-logo.png │ │ ├── facebook-logo.png │ │ ├── google-logo.png │ │ ├── google-reviews-logo.png │ │ ├── google-reviews.png │ │ ├── helpPage │ │ │ └── register.png │ │ ├── icons │ │ │ ├── add-blue.png │ │ │ ├── add-blue.svg │ │ │ ├── add.svg │ │ │ ├── allSources.png │ │ │ ├── analytics.png │ │ │ ├── analytics.svg │ │ │ ├── anger.png │ │ │ ├── anger.svg │ │ │ ├── arrow-right-solid.png │ │ │ ├── arrow-right-solid.svg │ │ │ ├── arrowBlockLeft.png │ │ │ ├── arrowBlockLeft.svg │ │ │ ├── arrowBlockRight.png │ │ │ ├── arrowBlockRight.svg │ │ │ ├── back-arrow-right-light.svg │ │ │ ├── bottom10.png │ │ │ ├── calendar.png │ │ │ ├── calendar.svg │ │ │ ├── closeSidebar.svg │ │ │ ├── comments.png │ │ │ ├── comments.svg │ │ │ ├── contract.svg │ │ │ ├── copy.svg │ │ │ ├── disgust.png │ │ │ ├── disgust.svg │ │ │ ├── edit.png │ │ │ ├── edit.svg │ │ │ ├── editdark.png │ │ │ ├── editdark.svg │ │ │ ├── expand.svg │ │ │ ├── fear.png │ │ │ ├── fear.svg │ │ │ ├── graph.png │ │ │ ├── graph.svg │ │ │ ├── grey-trash.png │ │ │ ├── grey-trash.svg │ │ │ ├── help.svg │ │ │ ├── hide-password.svg │ │ │ ├── info-white.svg │ │ │ ├── info.svg │ │ │ ├── joy.png │ │ │ ├── joy.svg │ │ │ ├── lock-solid.png │ │ │ ├── lock-solid.svg │ │ │ ├── negative.png │ │ │ ├── negative.svg │ │ │ ├── neutral-face.png │ │ │ ├── neutral-score.png │ │ │ ├── neutral-score.svg │ │ │ ├── neutral.svg │ │ │ ├── no.svg │ │ │ ├── openSidebar.svg │ │ │ ├── palette-solid.png │ │ │ ├── palette-solid.svg │ │ │ ├── pen-solid-black.svg │ │ │ ├── pen-solid.png │ │ │ ├── pen-solid.svg │ │ │ ├── positive.png │ │ │ ├── positive.svg │ │ │ ├── refresh.png │ │ │ ├── refresh.svg │ │ │ ├── report.svg │ │ │ ├── right-from-bracket-solid.png │ │ │ ├── right-from-bracket-solid.svg │ │ │ ├── sadness.png │ │ │ ├── sadness.svg │ │ │ ├── search.png │ │ │ ├── search.svg │ │ │ ├── settings.png │ │ │ ├── settings.svg │ │ │ ├── show-password.svg │ │ │ ├── sun.png │ │ │ ├── sun.svg │ │ │ ├── support.svg │ │ │ ├── surprise.png │ │ │ ├── surprise.svg │ │ │ ├── tooltip-info.png │ │ │ ├── tooltip.svg │ │ │ ├── top10.png │ │ │ ├── toxic.svg │ │ │ ├── trash-can-regular.png │ │ │ ├── trash-can-regular.svg │ │ │ ├── trash-solid.png │ │ │ ├── trash-solid.svg │ │ │ ├── tut-left.svg │ │ │ ├── tut-right.svg │ │ │ ├── undecided.png │ │ │ ├── up-arrow.svg │ │ │ ├── white-plus.png │ │ │ ├── white-plus.svg │ │ │ ├── yes-green.svg │ │ │ ├── yes.png │ │ │ └── yes.svg │ │ ├── instagram-Icon.png │ │ ├── live-review-logo.png │ │ ├── live-review-logo.svg │ │ ├── logos │ │ │ ├── logo-small-blue.png │ │ │ └── logo-small-white.png │ │ ├── noDomains.png │ │ ├── noResults.png │ │ ├── noSources.png │ │ ├── reddit-logo.png │ │ ├── starbucks-logo.png │ │ ├── stock-bg.png │ │ ├── stock-profile-pic.jpg │ │ ├── test.csv │ │ ├── tripadvisor-logo.png │ │ ├── trustpilot-logo.png │ │ ├── wave-squished.svg │ │ └── youtube-logo.png │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── proxy.config.json │ └── styles.sass ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── general-readme.md ├── nginx ├── dev-domainpulse.app.conf ├── domainpulse.app.conf ├── entrypoint.sh ├── nginx.conf └── prod-domainpulse.app.conf ├── notebooks ├── .ipynb_checkpoints │ ├── Preprocessing-checkpoint.ipynb │ └── bert-checkpoint.ipynb ├── Preprocessing.ipynb └── bert.ipynb ├── prize-submission-readme.md ├── prod-server-compose.yml ├── team-info-readme.md └── technical-details-readme.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/backend-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/backend-build.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/deploy-development.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/deploy-production.yml -------------------------------------------------------------------------------- /.github/workflows/frontend-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/frontend-build.yml -------------------------------------------------------------------------------- /.github/workflows/test-domains.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/test-domains.yml -------------------------------------------------------------------------------- /.github/workflows/test-engine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/test-engine.yml -------------------------------------------------------------------------------- /.github/workflows/test-profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/test-profiles.yml -------------------------------------------------------------------------------- /.github/workflows/test-sourceconnector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/test-sourceconnector.yml -------------------------------------------------------------------------------- /.github/workflows/test-warehouse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.github/workflows/test-warehouse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/README.md -------------------------------------------------------------------------------- /backend/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/Pipfile -------------------------------------------------------------------------------- /backend/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/Pipfile.lock -------------------------------------------------------------------------------- /backend/domains/.dockerignore: -------------------------------------------------------------------------------- 1 | .venv -------------------------------------------------------------------------------- /backend/domains/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/Dockerfile -------------------------------------------------------------------------------- /backend/domains/authchecker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/domains/authchecker/auth_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/authchecker/auth_checks.py -------------------------------------------------------------------------------- /backend/domains/domains.uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domains.uwsgi.ini -------------------------------------------------------------------------------- /backend/domains/domains/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/domains/domains/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domains/asgi.py -------------------------------------------------------------------------------- /backend/domains/domains/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domains/settings.py -------------------------------------------------------------------------------- /backend/domains/domains/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domains/urls.py -------------------------------------------------------------------------------- /backend/domains/domains/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domains/wsgi.py -------------------------------------------------------------------------------- /backend/domains/domainservice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/domains/domainservice/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domainservice/admin.py -------------------------------------------------------------------------------- /backend/domains/domainservice/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domainservice/apps.py -------------------------------------------------------------------------------- /backend/domains/domainservice/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/domains/domainservice/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domainservice/models.py -------------------------------------------------------------------------------- /backend/domains/domainservice/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domainservice/tests.py -------------------------------------------------------------------------------- /backend/domains/domainservice/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domainservice/urls.py -------------------------------------------------------------------------------- /backend/domains/domainservice/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/domainservice/views.py -------------------------------------------------------------------------------- /backend/domains/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/manage.py -------------------------------------------------------------------------------- /backend/domains/requirements-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/requirements-lock.txt -------------------------------------------------------------------------------- /backend/domains/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/requirements.txt -------------------------------------------------------------------------------- /backend/domains/sourcevalidator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/domains/sourcevalidator/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/sourcevalidator/validator.py -------------------------------------------------------------------------------- /backend/domains/utils/db_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/utils/db_connection.py -------------------------------------------------------------------------------- /backend/domains/utils/domainscrud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/domains/utils/domainscrud.py -------------------------------------------------------------------------------- /backend/engine/.dockerignore: -------------------------------------------------------------------------------- 1 | .venv -------------------------------------------------------------------------------- /backend/engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/Dockerfile -------------------------------------------------------------------------------- /backend/engine/aggregator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/engine/aggregator/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/aggregator/admin.py -------------------------------------------------------------------------------- /backend/engine/aggregator/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/aggregator/apps.py -------------------------------------------------------------------------------- /backend/engine/aggregator/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/engine/aggregator/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/aggregator/models.py -------------------------------------------------------------------------------- /backend/engine/aggregator/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/aggregator/tests.py -------------------------------------------------------------------------------- /backend/engine/aggregator/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/aggregator/urls.py -------------------------------------------------------------------------------- /backend/engine/aggregator/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/aggregator/views.py -------------------------------------------------------------------------------- /backend/engine/analyser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/engine/analyser/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/analyser/admin.py -------------------------------------------------------------------------------- /backend/engine/analyser/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/analyser/apps.py -------------------------------------------------------------------------------- /backend/engine/analyser/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/engine/analyser/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/analyser/models.py -------------------------------------------------------------------------------- /backend/engine/analyser/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/analyser/tests.py -------------------------------------------------------------------------------- /backend/engine/analyser/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/analyser/urls.py -------------------------------------------------------------------------------- /backend/engine/analyser/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/analyser/views.py -------------------------------------------------------------------------------- /backend/engine/engine.uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/engine.uwsgi.ini -------------------------------------------------------------------------------- /backend/engine/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/engine/engine/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/engine/asgi.py -------------------------------------------------------------------------------- /backend/engine/engine/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/engine/settings.py -------------------------------------------------------------------------------- /backend/engine/engine/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/engine/urls.py -------------------------------------------------------------------------------- /backend/engine/engine/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/engine/wsgi.py -------------------------------------------------------------------------------- /backend/engine/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/manage.py -------------------------------------------------------------------------------- /backend/engine/postprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/engine/postprocessor/aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/postprocessor/aggregation.py -------------------------------------------------------------------------------- /backend/engine/preprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/engine/preprocessor/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/preprocessor/preprocessing.py -------------------------------------------------------------------------------- /backend/engine/processor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/engine/processor/nn_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/processor/nn_models.py -------------------------------------------------------------------------------- /backend/engine/processor/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/processor/processing.py -------------------------------------------------------------------------------- /backend/engine/requirements-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/requirements-lock.txt -------------------------------------------------------------------------------- /backend/engine/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/requirements.txt -------------------------------------------------------------------------------- /backend/engine/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/engine/utils/mock_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/engine/utils/mock_data.py -------------------------------------------------------------------------------- /backend/live_update/socket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/live_update/socket_server.py -------------------------------------------------------------------------------- /backend/live_update/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/live_update/test_client.py -------------------------------------------------------------------------------- /backend/mockdata/datapopulationscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/datapopulationscript.py -------------------------------------------------------------------------------- /backend/mockdata/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/db.json -------------------------------------------------------------------------------- /backend/mockdata/goddesscafe1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/goddesscafe1.json -------------------------------------------------------------------------------- /backend/mockdata/goddesscafe2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/goddesscafe2.json -------------------------------------------------------------------------------- /backend/mockdata/goddesscafe3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/goddesscafe3.json -------------------------------------------------------------------------------- /backend/mockdata/goddesscafe4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/goddesscafe4.json -------------------------------------------------------------------------------- /backend/mockdata/hccinsta1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/hccinsta1.json -------------------------------------------------------------------------------- /backend/mockdata/hccinsta2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/hccinsta2.json -------------------------------------------------------------------------------- /backend/mockdata/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/script.py -------------------------------------------------------------------------------- /backend/mockdata/sharksinsta1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/sharksinsta1.json -------------------------------------------------------------------------------- /backend/mockdata/sharksinsta2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/sharksinsta2.json -------------------------------------------------------------------------------- /backend/mockdata/temp00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp00.json -------------------------------------------------------------------------------- /backend/mockdata/temp01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp01.json -------------------------------------------------------------------------------- /backend/mockdata/temp02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp02.json -------------------------------------------------------------------------------- /backend/mockdata/temp03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp03.json -------------------------------------------------------------------------------- /backend/mockdata/temp04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp04.json -------------------------------------------------------------------------------- /backend/mockdata/temp05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp05.json -------------------------------------------------------------------------------- /backend/mockdata/temp06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp06.json -------------------------------------------------------------------------------- /backend/mockdata/temp110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp110.json -------------------------------------------------------------------------------- /backend/mockdata/temp111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp111.json -------------------------------------------------------------------------------- /backend/mockdata/temp112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp112.json -------------------------------------------------------------------------------- /backend/mockdata/temp113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp113.json -------------------------------------------------------------------------------- /backend/mockdata/temp17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp17.json -------------------------------------------------------------------------------- /backend/mockdata/temp18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp18.json -------------------------------------------------------------------------------- /backend/mockdata/temp19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp19.json -------------------------------------------------------------------------------- /backend/mockdata/temp214.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp214.json -------------------------------------------------------------------------------- /backend/mockdata/temp215.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp215.json -------------------------------------------------------------------------------- /backend/mockdata/temp216.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp216.json -------------------------------------------------------------------------------- /backend/mockdata/temp217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp217.json -------------------------------------------------------------------------------- /backend/mockdata/temp218.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp218.json -------------------------------------------------------------------------------- /backend/mockdata/temp319.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp319.json -------------------------------------------------------------------------------- /backend/mockdata/temp320.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp320.json -------------------------------------------------------------------------------- /backend/mockdata/temp321.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp321.json -------------------------------------------------------------------------------- /backend/mockdata/temp322.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp322.json -------------------------------------------------------------------------------- /backend/mockdata/temp323.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp323.json -------------------------------------------------------------------------------- /backend/mockdata/temp424.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp424.json -------------------------------------------------------------------------------- /backend/mockdata/temp425.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp425.json -------------------------------------------------------------------------------- /backend/mockdata/temp426.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp426.json -------------------------------------------------------------------------------- /backend/mockdata/temp427.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp427.json -------------------------------------------------------------------------------- /backend/mockdata/temp428.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp428.json -------------------------------------------------------------------------------- /backend/mockdata/temp429.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp429.json -------------------------------------------------------------------------------- /backend/mockdata/temp430.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp430.json -------------------------------------------------------------------------------- /backend/mockdata/temp431.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp431.json -------------------------------------------------------------------------------- /backend/mockdata/temp432.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp432.json -------------------------------------------------------------------------------- /backend/mockdata/temp433.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp433.json -------------------------------------------------------------------------------- /backend/mockdata/temp434.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp434.json -------------------------------------------------------------------------------- /backend/mockdata/temp435.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp435.json -------------------------------------------------------------------------------- /backend/mockdata/temp436.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/temp436.json -------------------------------------------------------------------------------- /backend/mockdata/test-connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/test-connect.py -------------------------------------------------------------------------------- /backend/mockdata/tuks1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/tuks1.json -------------------------------------------------------------------------------- /backend/mockdata/tuks2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/mockdata/tuks2.json -------------------------------------------------------------------------------- /backend/profiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/Dockerfile -------------------------------------------------------------------------------- /backend/profiles/assets/domain_html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/domain_html.txt -------------------------------------------------------------------------------- /backend/profiles/assets/domain_js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/domain_js.txt -------------------------------------------------------------------------------- /backend/profiles/assets/images/LogoIconBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/LogoIconBlue.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/allSources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/allSources.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/analytics.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/analytics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/analytics.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/anger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/anger.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/anger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/anger.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/calendar.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/calendar.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/comments.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/comments.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/csv-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/csv-logo.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/disgust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/disgust.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/disgust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/disgust.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/dp-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/dp-logo-blue.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/fear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/fear.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/fear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/fear.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/footer_art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/footer_art.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/google-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/google-logo.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/google-reviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/google-reviews.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/graph.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/graph.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/header_art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/header_art.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/joy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/joy.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/joy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/joy.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/link-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/link-solid.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/live-review-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/live-review-logo.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/negative.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/negative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/negative.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/neutral-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/neutral-score.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/neutral-score.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/neutral-score.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/neutral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/neutral.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/positive.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/positive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/positive.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/sadness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/sadness.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/sadness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/sadness.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/starbucks-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/starbucks-logo.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/surprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/surprise.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/surprise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/surprise.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/toxic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/toxic.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/toxic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/toxic.svg -------------------------------------------------------------------------------- /backend/profiles/assets/images/tripadvisor-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/tripadvisor-logo.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/trustpilot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/trustpilot-logo.png -------------------------------------------------------------------------------- /backend/profiles/assets/images/youtube-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/images/youtube-logo.png -------------------------------------------------------------------------------- /backend/profiles/assets/input_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/input_template.html -------------------------------------------------------------------------------- /backend/profiles/assets/source_html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/source_html.txt -------------------------------------------------------------------------------- /backend/profiles/assets/source_js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/source_js.txt -------------------------------------------------------------------------------- /backend/profiles/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/assets/style.css -------------------------------------------------------------------------------- /backend/profiles/check_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/profiles/check_auth/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/check_auth/admin.py -------------------------------------------------------------------------------- /backend/profiles/check_auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/check_auth/apps.py -------------------------------------------------------------------------------- /backend/profiles/check_auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/profiles/check_auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/check_auth/models.py -------------------------------------------------------------------------------- /backend/profiles/check_auth/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/check_auth/tests.py -------------------------------------------------------------------------------- /backend/profiles/check_auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/check_auth/urls.py -------------------------------------------------------------------------------- /backend/profiles/check_auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/check_auth/views.py -------------------------------------------------------------------------------- /backend/profiles/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/manage.py -------------------------------------------------------------------------------- /backend/profiles/profiles.uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profiles.uwsgi.ini -------------------------------------------------------------------------------- /backend/profiles/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/profiles/profiles/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profiles/asgi.py -------------------------------------------------------------------------------- /backend/profiles/profiles/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profiles/settings.py -------------------------------------------------------------------------------- /backend/profiles/profiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profiles/urls.py -------------------------------------------------------------------------------- /backend/profiles/profiles/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profiles/wsgi.py -------------------------------------------------------------------------------- /backend/profiles/profileservice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/profiles/profileservice/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /backend/profiles/profileservice/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profileservice/apps.py -------------------------------------------------------------------------------- /backend/profiles/profileservice/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profileservice/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/profiles/profileservice/migrations/0005_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profileservice/migrations/0005_domains.py -------------------------------------------------------------------------------- /backend/profiles/profileservice/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/profiles/profileservice/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profileservice/models.py -------------------------------------------------------------------------------- /backend/profiles/profileservice/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profileservice/tests.py -------------------------------------------------------------------------------- /backend/profiles/profileservice/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profileservice/urls.py -------------------------------------------------------------------------------- /backend/profiles/profileservice/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/profileservice/views.py -------------------------------------------------------------------------------- /backend/profiles/reportgenerator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/profiles/reportgenerator/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/reportgenerator/admin.py -------------------------------------------------------------------------------- /backend/profiles/reportgenerator/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/reportgenerator/apps.py -------------------------------------------------------------------------------- /backend/profiles/reportgenerator/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/profiles/reportgenerator/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/reportgenerator/models.py -------------------------------------------------------------------------------- /backend/profiles/reportgenerator/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/reportgenerator/tests.py -------------------------------------------------------------------------------- /backend/profiles/reportgenerator/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/reportgenerator/urls.py -------------------------------------------------------------------------------- /backend/profiles/reportgenerator/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/reportgenerator/views.py -------------------------------------------------------------------------------- /backend/profiles/requirements-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/requirements-lock.txt -------------------------------------------------------------------------------- /backend/profiles/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/requirements.txt -------------------------------------------------------------------------------- /backend/profiles/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/profiles/utils/profilescrud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/profiles/utils/profilescrud.py -------------------------------------------------------------------------------- /backend/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/readme.md -------------------------------------------------------------------------------- /backend/scripts/check_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/scripts/check_all.sh -------------------------------------------------------------------------------- /backend/scripts/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/scripts/coverage.sh -------------------------------------------------------------------------------- /backend/scripts/push-images.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/scripts/push-images.bat -------------------------------------------------------------------------------- /backend/scripts/run-projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/scripts/run-projects.sh -------------------------------------------------------------------------------- /backend/scripts/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/scripts/servers.json -------------------------------------------------------------------------------- /backend/scripts/start_backend_w_pm2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/scripts/start_backend_w_pm2.sh -------------------------------------------------------------------------------- /backend/scripts/update-services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/scripts/update-services.sh -------------------------------------------------------------------------------- /backend/scripts/warehouse_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/scripts/warehouse_cleanup.py -------------------------------------------------------------------------------- /backend/sourceconnector/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/Dockerfile -------------------------------------------------------------------------------- /backend/sourceconnector/googlereviews/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/sourceconnector/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/manage.py -------------------------------------------------------------------------------- /backend/sourceconnector/refresh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/sourceconnector/refresh/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/refresh/admin.py -------------------------------------------------------------------------------- /backend/sourceconnector/refresh/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/refresh/apps.py -------------------------------------------------------------------------------- /backend/sourceconnector/refresh/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/sourceconnector/refresh/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/refresh/models.py -------------------------------------------------------------------------------- /backend/sourceconnector/refresh/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/refresh/tests.py -------------------------------------------------------------------------------- /backend/sourceconnector/refresh/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/refresh/urls.py -------------------------------------------------------------------------------- /backend/sourceconnector/refresh/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/refresh/views.py -------------------------------------------------------------------------------- /backend/sourceconnector/requirements-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/requirements-lock.txt -------------------------------------------------------------------------------- /backend/sourceconnector/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/requirements.txt -------------------------------------------------------------------------------- /backend/sourceconnector/sourceconnector.uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/sourceconnector.uwsgi.ini -------------------------------------------------------------------------------- /backend/sourceconnector/sourceconnector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/sourceconnector/sourceconnector/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/sourceconnector/asgi.py -------------------------------------------------------------------------------- /backend/sourceconnector/sourceconnector/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/sourceconnector/settings.py -------------------------------------------------------------------------------- /backend/sourceconnector/sourceconnector/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/sourceconnector/urls.py -------------------------------------------------------------------------------- /backend/sourceconnector/sourceconnector/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/sourceconnector/wsgi.py -------------------------------------------------------------------------------- /backend/sourceconnector/tripadvisor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/sourceconnector/tripadvisor/tripadvisor_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/tripadvisor/tripadvisor_connector.py -------------------------------------------------------------------------------- /backend/sourceconnector/trustpilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/sourceconnector/trustpilot/trustpilot_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/trustpilot/trustpilot_connector.py -------------------------------------------------------------------------------- /backend/sourceconnector/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/sourceconnector/utils/mock_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/utils/mock_data.py -------------------------------------------------------------------------------- /backend/sourceconnector/youtube/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/sourceconnector/youtube/youtube_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/sourceconnector/youtube/youtube_connector.py -------------------------------------------------------------------------------- /backend/warehouse/CSV/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/warehouse/CSV/csv_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/CSV/csv_connector.py -------------------------------------------------------------------------------- /backend/warehouse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/Dockerfile -------------------------------------------------------------------------------- /backend/warehouse/authchecker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/warehouse/authchecker/auth_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/authchecker/auth_checks.py -------------------------------------------------------------------------------- /backend/warehouse/datamanager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/warehouse/datamanager/refresh_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/datamanager/refresh_queue.py -------------------------------------------------------------------------------- /backend/warehouse/datamanager/sentiment_record_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/datamanager/sentiment_record_model.py -------------------------------------------------------------------------------- /backend/warehouse/ingest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/warehouse/ingest/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/admin.py -------------------------------------------------------------------------------- /backend/warehouse/ingest/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/apps.py -------------------------------------------------------------------------------- /backend/warehouse/ingest/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/warehouse/ingest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/models.py -------------------------------------------------------------------------------- /backend/warehouse/ingest/static/Centre logo white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/static/Centre logo white.png -------------------------------------------------------------------------------- /backend/warehouse/ingest/static/Centre logo white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/static/Centre logo white.svg -------------------------------------------------------------------------------- /backend/warehouse/ingest/static/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/static/error.svg -------------------------------------------------------------------------------- /backend/warehouse/ingest/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/static/favicon.ico -------------------------------------------------------------------------------- /backend/warehouse/ingest/static/live-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/static/live-bg.jpg -------------------------------------------------------------------------------- /backend/warehouse/ingest/static/live-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/static/live-bg.png -------------------------------------------------------------------------------- /backend/warehouse/ingest/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/static/style.css -------------------------------------------------------------------------------- /backend/warehouse/ingest/static/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/static/success.svg -------------------------------------------------------------------------------- /backend/warehouse/ingest/templates/done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/templates/done.html -------------------------------------------------------------------------------- /backend/warehouse/ingest/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/templates/error.html -------------------------------------------------------------------------------- /backend/warehouse/ingest/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/templates/form.html -------------------------------------------------------------------------------- /backend/warehouse/ingest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/tests.py -------------------------------------------------------------------------------- /backend/warehouse/ingest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/urls.py -------------------------------------------------------------------------------- /backend/warehouse/ingest/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/ingest/views.py -------------------------------------------------------------------------------- /backend/warehouse/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/manage.py -------------------------------------------------------------------------------- /backend/warehouse/query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/warehouse/query/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/query/admin.py -------------------------------------------------------------------------------- /backend/warehouse/query/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/query/apps.py -------------------------------------------------------------------------------- /backend/warehouse/query/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/warehouse/query/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/query/models.py -------------------------------------------------------------------------------- /backend/warehouse/query/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/query/tests.py -------------------------------------------------------------------------------- /backend/warehouse/query/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/query/urls.py -------------------------------------------------------------------------------- /backend/warehouse/query/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/query/views.py -------------------------------------------------------------------------------- /backend/warehouse/requirements-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/requirements-lock.txt -------------------------------------------------------------------------------- /backend/warehouse/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/requirements.txt -------------------------------------------------------------------------------- /backend/warehouse/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/warehouse/utils/db_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/utils/db_connection.py -------------------------------------------------------------------------------- /backend/warehouse/warehouse.uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/warehouse.uwsgi.ini -------------------------------------------------------------------------------- /backend/warehouse/warehouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/warehouse/warehouse/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/warehouse/asgi.py -------------------------------------------------------------------------------- /backend/warehouse/warehouse/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/warehouse/settings.py -------------------------------------------------------------------------------- /backend/warehouse/warehouse/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/warehouse/urls.py -------------------------------------------------------------------------------- /backend/warehouse/warehouse/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/backend/warehouse/warehouse/wsgi.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/codecov.yml -------------------------------------------------------------------------------- /demos-archive-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/demos-archive-readme.md -------------------------------------------------------------------------------- /dev-server-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/dev-server-compose.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /documentation/ADD/ArchitecturalDesignDocument.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/ADD/ArchitecturalDesignDocument.pdf -------------------------------------------------------------------------------- /documentation/ADD/ArchitecturalDesignDocument.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/ADD/ArchitecturalDesignDocument.tex -------------------------------------------------------------------------------- /documentation/ADD/Demo2Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/ADD/Demo2Architecture.jpg -------------------------------------------------------------------------------- /documentation/ADD/Demo3Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/ADD/Demo3Architecture.jpg -------------------------------------------------------------------------------- /documentation/ADD/Demo4Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/ADD/Demo4Architecture.jpg -------------------------------------------------------------------------------- /documentation/ADD/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/ADD/cover.tex -------------------------------------------------------------------------------- /documentation/ADD/images/domain-pulse-deployment-p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/ADD/images/domain-pulse-deployment-p2.png -------------------------------------------------------------------------------- /documentation/ADD/images/domain-pulse-deployment.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/ADD/images/domain-pulse-deployment.drawio.png -------------------------------------------------------------------------------- /documentation/Coding Standards/CodingStandards.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Coding Standards/CodingStandards.pdf -------------------------------------------------------------------------------- /documentation/Coding Standards/CodingStandards.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Coding Standards/CodingStandards.tex -------------------------------------------------------------------------------- /documentation/Coding Standards/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Coding Standards/cover.tex -------------------------------------------------------------------------------- /documentation/Deployment_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Deployment_diagram.pdf -------------------------------------------------------------------------------- /documentation/Images/DBDesign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/DBDesign.jpg -------------------------------------------------------------------------------- /documentation/Images/UC 2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC 2.1.png -------------------------------------------------------------------------------- /documentation/Images/UC 2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC 2.2.png -------------------------------------------------------------------------------- /documentation/Images/UC 2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC 2.3.png -------------------------------------------------------------------------------- /documentation/Images/UC 2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC 2.4.png -------------------------------------------------------------------------------- /documentation/Images/UC 2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC 2.5.png -------------------------------------------------------------------------------- /documentation/Images/UC2.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC2.2.1.png -------------------------------------------------------------------------------- /documentation/Images/UC2.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC2.2.2.png -------------------------------------------------------------------------------- /documentation/Images/UC2.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC2.2.3.png -------------------------------------------------------------------------------- /documentation/Images/UC2.2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC2.2.4.png -------------------------------------------------------------------------------- /documentation/Images/UC2.2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/UC2.2.5.png -------------------------------------------------------------------------------- /documentation/Images/archDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/archDiagram.png -------------------------------------------------------------------------------- /documentation/Images/cadLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/cadLogo.png -------------------------------------------------------------------------------- /documentation/Images/classDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/classDiagram.png -------------------------------------------------------------------------------- /documentation/Images/classDiagram2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/classDiagram2.jpg -------------------------------------------------------------------------------- /documentation/Images/databaseDesignPic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/databaseDesignPic.png -------------------------------------------------------------------------------- /documentation/Images/dpLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/dpLogo.png -------------------------------------------------------------------------------- /documentation/Images/uc1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/uc1.1.png -------------------------------------------------------------------------------- /documentation/Images/uc1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/uc1.2.png -------------------------------------------------------------------------------- /documentation/Images/uc1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/uc1.3.png -------------------------------------------------------------------------------- /documentation/Images/uc1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/uc1.4.png -------------------------------------------------------------------------------- /documentation/Images/uc1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Images/uc1.5.png -------------------------------------------------------------------------------- /documentation/Initial_Sentiment_Analysis_Breakdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Initial_Sentiment_Analysis_Breakdown.pdf -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/Research_Domain_Pulse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Research_Domain_Pulse.pdf -------------------------------------------------------------------------------- /documentation/Research_Domain_Pulse_Demo4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Research_Domain_Pulse_Demo4.pdf -------------------------------------------------------------------------------- /documentation/SRS/Version 1/SRS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 1/SRS.pdf -------------------------------------------------------------------------------- /documentation/SRS/Version 1/SRS.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 1/SRS.tex -------------------------------------------------------------------------------- /documentation/SRS/Version 1/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 1/cover.tex -------------------------------------------------------------------------------- /documentation/SRS/Version 2/SRS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 2/SRS.pdf -------------------------------------------------------------------------------- /documentation/SRS/Version 2/SRS.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 2/SRS.tex -------------------------------------------------------------------------------- /documentation/SRS/Version 2/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 2/cover.tex -------------------------------------------------------------------------------- /documentation/SRS/Version 3/SRS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 3/SRS.pdf -------------------------------------------------------------------------------- /documentation/SRS/Version 3/SRS.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 3/SRS.tex -------------------------------------------------------------------------------- /documentation/SRS/Version 3/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 3/cover.tex -------------------------------------------------------------------------------- /documentation/SRS/Version 4 (Demo 4)/SRS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 4 (Demo 4)/SRS.pdf -------------------------------------------------------------------------------- /documentation/SRS/Version 4 (Demo 4)/SRS.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 4 (Demo 4)/SRS.tex -------------------------------------------------------------------------------- /documentation/SRS/Version 4 (Demo 4)/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/SRS/Version 4 (Demo 4)/cover.tex -------------------------------------------------------------------------------- /documentation/Technical Installation Manual/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Technical Installation Manual/cover.tex -------------------------------------------------------------------------------- /documentation/Testing Policy/Cyclomatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/Cyclomatic.png -------------------------------------------------------------------------------- /documentation/Testing Policy/GeneralAccuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/GeneralAccuracy.png -------------------------------------------------------------------------------- /documentation/Testing Policy/Maintainability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/Maintainability.png -------------------------------------------------------------------------------- /documentation/Testing Policy/Overall rating of the website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/Overall rating of the website.png -------------------------------------------------------------------------------- /documentation/Testing Policy/PerfTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/PerfTable.png -------------------------------------------------------------------------------- /documentation/Testing Policy/PositiveAndNegative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/PositiveAndNegative.png -------------------------------------------------------------------------------- /documentation/Testing Policy/Scalability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/Scalability.png -------------------------------------------------------------------------------- /documentation/Testing Policy/Screenshot 2023-09-27 215821.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/Testing Policy/TestingPolicy.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/TestingPolicy.out -------------------------------------------------------------------------------- /documentation/Testing Policy/TestingPolicy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/TestingPolicy.pdf -------------------------------------------------------------------------------- /documentation/Testing Policy/TestingPolicy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/TestingPolicy.tex -------------------------------------------------------------------------------- /documentation/Testing Policy/UTR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/UTR.pdf -------------------------------------------------------------------------------- /documentation/Testing Policy/codecovReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/codecovReport.png -------------------------------------------------------------------------------- /documentation/Testing Policy/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/cover.tex -------------------------------------------------------------------------------- /documentation/Testing Policy/piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/piechart.png -------------------------------------------------------------------------------- /documentation/Testing Policy/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/table.png -------------------------------------------------------------------------------- /documentation/Testing Policy/table2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/Testing Policy/table2.png -------------------------------------------------------------------------------- /documentation/User Manual/Version 1/User_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/User Manual/Version 1/User_Manual.pdf -------------------------------------------------------------------------------- /documentation/User Manual/Version 2/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/User Manual/Version 2/cover.tex -------------------------------------------------------------------------------- /documentation/User Manual/Version 2/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/User Manual/Version 2/manual.pdf -------------------------------------------------------------------------------- /documentation/User Manual/Version 2/manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/documentation/User Manual/Version 2/manual.tex -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/angular.json -------------------------------------------------------------------------------- /frontend/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress.config.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/accountsManage.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress/e2e/accountsManage.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/dashboard.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress/e2e/dashboard.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/login.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress/e2e/login.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress/fixtures/example.json -------------------------------------------------------------------------------- /frontend/cypress/fixtures/stock-profile-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress/fixtures/stock-profile-pic.jpg -------------------------------------------------------------------------------- /frontend/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress/support/commands.ts -------------------------------------------------------------------------------- /frontend/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress/support/e2e.ts -------------------------------------------------------------------------------- /frontend/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/cypress/tsconfig.json -------------------------------------------------------------------------------- /frontend/env-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/env-config.js -------------------------------------------------------------------------------- /frontend/info-page/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/animate.css -------------------------------------------------------------------------------- /frontend/info-page/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /frontend/info-page/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /frontend/info-page/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/bootstrap.min.css -------------------------------------------------------------------------------- /frontend/info-page/css/coloring.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/coloring.css -------------------------------------------------------------------------------- /frontend/info-page/css/colors/scheme-01.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/colors/scheme-01.css -------------------------------------------------------------------------------- /frontend/info-page/css/colors/scheme-02.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/colors/scheme-02.css -------------------------------------------------------------------------------- /frontend/info-page/css/colors/scheme-03.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/colors/scheme-03.css -------------------------------------------------------------------------------- /frontend/info-page/css/colors/scheme-04.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/colors/scheme-04.css -------------------------------------------------------------------------------- /frontend/info-page/css/jpreloader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/jpreloader.css -------------------------------------------------------------------------------- /frontend/info-page/css/jquery.countdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/jquery.countdown.css -------------------------------------------------------------------------------- /frontend/info-page/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/magnific-popup.css -------------------------------------------------------------------------------- /frontend/info-page/css/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/owl.carousel.css -------------------------------------------------------------------------------- /frontend/info-page/css/owl.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/owl.theme.css -------------------------------------------------------------------------------- /frontend/info-page/css/owl.transitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/owl.transitions.css -------------------------------------------------------------------------------- /frontend/info-page/css/rev-settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/rev-settings.css -------------------------------------------------------------------------------- /frontend/info-page/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/style.css -------------------------------------------------------------------------------- /frontend/info-page/css/supersized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/css/supersized.css -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/HTML_CSS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/HTML_CSS/index.html -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/HTML_CSS/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/HTML_CSS/lte-ie7.js -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/HTML_CSS/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/HTML_CSS/style.css -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/PNG/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/PNG/arrow_up.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/PNG/icon_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/PNG/icon_bag.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/PNG/icon_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/PNG/icon_book.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/PNG/icon_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/PNG/icon_cart.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/PNG/icon_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/PNG/icon_id.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/PNG/icon_ol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/PNG/icon_ol.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/PNG/icon_ul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/PNG/icon_ul.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/SVG/icon_id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/SVG/icon_id.svg -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/SVG/icon_ol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/SVG/icon_ol.svg -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/SVG/icon_ul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/SVG/icon_ul.svg -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/caden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/caden.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/chris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/chris.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/luke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/luke.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/thomas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/thomas.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/elegant_font/images/thuthuka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/elegant_font/images/thuthuka.png -------------------------------------------------------------------------------- /frontend/info-page/fonts/et-line-font/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/et-line-font/Read Me.txt -------------------------------------------------------------------------------- /frontend/info-page/fonts/et-line-font/et-line.dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/et-line-font/et-line.dev.svg -------------------------------------------------------------------------------- /frontend/info-page/fonts/et-line-font/fonts/et-line.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/et-line-font/fonts/et-line.eot -------------------------------------------------------------------------------- /frontend/info-page/fonts/et-line-font/fonts/et-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/et-line-font/fonts/et-line.svg -------------------------------------------------------------------------------- /frontend/info-page/fonts/et-line-font/fonts/et-line.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/et-line-font/fonts/et-line.ttf -------------------------------------------------------------------------------- /frontend/info-page/fonts/et-line-font/fonts/et-line.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/et-line-font/fonts/et-line.woff -------------------------------------------------------------------------------- /frontend/info-page/fonts/et-line-font/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/et-line-font/index.html -------------------------------------------------------------------------------- /frontend/info-page/fonts/et-line-font/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/et-line-font/lte-ie7.js -------------------------------------------------------------------------------- /frontend/info-page/fonts/et-line-font/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/et-line-font/style.css -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/animated.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/core.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/icons.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/larger.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/list.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/path.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/less/variables.less -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_animated.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/info-page/fonts/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/fonts/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /frontend/info-page/images/background/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/1.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/background/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/1.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/10.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/11.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/1b.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/2.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/background/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/2.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/3.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/background/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/3.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/3b.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/3c.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/3d.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/3i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/3i.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/4.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/background/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/4.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/5.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/background/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/5.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/6.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/7.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/8.png -------------------------------------------------------------------------------- /frontend/info-page/images/background/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/background/9.png -------------------------------------------------------------------------------- /frontend/info-page/images/dp-logo-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/dp-logo-bg.png -------------------------------------------------------------------------------- /frontend/info-page/images/dp-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/dp-logo-blue.png -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/Ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/Ai.png -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/GitHub-Mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/GitHub-Mark.png -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/adobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/adobe.png -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/angular.png -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/dpfinal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/dpfinal.png -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/mongo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/mongo-logo.png -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/mongo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/mongo.svg -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/postgre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/postgre.png -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/sass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/sass2.png -------------------------------------------------------------------------------- /frontend/info-page/images/logo-clients/ytfinal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/logo-clients/ytfinal.png -------------------------------------------------------------------------------- /frontend/info-page/images/misc/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/misc/1.png -------------------------------------------------------------------------------- /frontend/info-page/images/misc/laptop-mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/misc/laptop-mockup.png -------------------------------------------------------------------------------- /frontend/info-page/images/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/team/1.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/team/2.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/team/3.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/team/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/team/4.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/team/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/team/5.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/team/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/team/6.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/team/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/team/7.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/team/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/team/8.jpg -------------------------------------------------------------------------------- /frontend/info-page/images/ui/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/ui/arrow-down.png -------------------------------------------------------------------------------- /frontend/info-page/images/ui/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/images/ui/arrow-up.png -------------------------------------------------------------------------------- /frontend/info-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/index.html -------------------------------------------------------------------------------- /frontend/info-page/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/app.js -------------------------------------------------------------------------------- /frontend/info-page/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/bootstrap.min.js -------------------------------------------------------------------------------- /frontend/info-page/js/countdown-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/countdown-custom.js -------------------------------------------------------------------------------- /frontend/info-page/js/designesia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/designesia.js -------------------------------------------------------------------------------- /frontend/info-page/js/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/easing.js -------------------------------------------------------------------------------- /frontend/info-page/js/enquire.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/enquire.min.js -------------------------------------------------------------------------------- /frontend/info-page/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/html5shiv.js -------------------------------------------------------------------------------- /frontend/info-page/js/jquery.countTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/jquery.countTo.js -------------------------------------------------------------------------------- /frontend/info-page/js/jquery.countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/jquery.countdown.js -------------------------------------------------------------------------------- /frontend/info-page/js/jquery.isotope.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/jquery.isotope.min.js -------------------------------------------------------------------------------- /frontend/info-page/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /frontend/info-page/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/jquery.min.js -------------------------------------------------------------------------------- /frontend/info-page/js/jquery.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/jquery.plugin.js -------------------------------------------------------------------------------- /frontend/info-page/js/jquery.stellar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/jquery.stellar.min.js -------------------------------------------------------------------------------- /frontend/info-page/js/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/map.js -------------------------------------------------------------------------------- /frontend/info-page/js/maps.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/maps.api.js -------------------------------------------------------------------------------- /frontend/info-page/js/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/owl.carousel.js -------------------------------------------------------------------------------- /frontend/info-page/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/owl.carousel.min.js -------------------------------------------------------------------------------- /frontend/info-page/js/particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/particles.js -------------------------------------------------------------------------------- /frontend/info-page/js/supersized.3.2.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/supersized.3.2.7.min.js -------------------------------------------------------------------------------- /frontend/info-page/js/typed-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/typed-custom.js -------------------------------------------------------------------------------- /frontend/info-page/js/typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/typed.js -------------------------------------------------------------------------------- /frontend/info-page/js/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/validation.js -------------------------------------------------------------------------------- /frontend/info-page/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/info-page/js/wow.min.js -------------------------------------------------------------------------------- /frontend/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/karma.conf.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/app/accordion-card/accordion.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/accordion-card/accordion.component.html -------------------------------------------------------------------------------- /frontend/src/app/accordion-card/accordion.component.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/accordion-card/accordion.component.sass -------------------------------------------------------------------------------- /frontend/src/app/accordion-card/accordion.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/accordion-card/accordion.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/accordion-card/accordion.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/accordion-card/accordion.component.ts -------------------------------------------------------------------------------- /frontend/src/app/accordion-card/accordion.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/accordion-card/accordion.module.ts -------------------------------------------------------------------------------- /frontend/src/app/api.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/api.interceptor.ts -------------------------------------------------------------------------------- /frontend/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/app.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.actions.ts -------------------------------------------------------------------------------- /frontend/src/app/app.api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.api.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/app.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.api.ts -------------------------------------------------------------------------------- /frontend/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.component.html -------------------------------------------------------------------------------- /frontend/src/app/app.component.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.component.sass -------------------------------------------------------------------------------- /frontend/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.component.ts -------------------------------------------------------------------------------- /frontend/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/src/app/app.state.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.state.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/app.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/app.state.ts -------------------------------------------------------------------------------- /frontend/src/app/auth-service.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/auth-service.service.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/auth-service.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/auth-service.service.ts -------------------------------------------------------------------------------- /frontend/src/app/auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/auth.guard.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/auth.guard.ts -------------------------------------------------------------------------------- /frontend/src/app/azure-blob-storage.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/azure-blob-storage.service.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/azure-blob-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/azure-blob-storage.service.ts -------------------------------------------------------------------------------- /frontend/src/app/comments-view/comments-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/comments-view/comments-view.component.html -------------------------------------------------------------------------------- /frontend/src/app/comments-view/comments-view.component.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/comments-view/comments-view.component.sass -------------------------------------------------------------------------------- /frontend/src/app/comments-view/comments-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/comments-view/comments-view.component.ts -------------------------------------------------------------------------------- /frontend/src/app/graph-selector/graph-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/graph-selector/graph-selector.component.ts -------------------------------------------------------------------------------- /frontend/src/app/guest.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/guest.guard.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/guest.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/guest.guard.ts -------------------------------------------------------------------------------- /frontend/src/app/help-page/help-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/help-page/help-page.component.html -------------------------------------------------------------------------------- /frontend/src/app/help-page/help-page.component.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/help-page/help-page.component.sass -------------------------------------------------------------------------------- /frontend/src/app/help-page/help-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/help-page/help-page.component.ts -------------------------------------------------------------------------------- /frontend/src/app/info.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/info.guard.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/info.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/info.guard.ts -------------------------------------------------------------------------------- /frontend/src/app/login-page/login-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/login-page/login-page.component.html -------------------------------------------------------------------------------- /frontend/src/app/login-page/login-page.component.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/login-page/login-page.component.sass -------------------------------------------------------------------------------- /frontend/src/app/login-page/login-page.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/login-page/login-page.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/login-page/login-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/login-page/login-page.component.ts -------------------------------------------------------------------------------- /frontend/src/app/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/main/main.component.html -------------------------------------------------------------------------------- /frontend/src/app/main/main.component.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/main/main.component.sass -------------------------------------------------------------------------------- /frontend/src/app/main/main.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/main/main.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/main/main.component.ts -------------------------------------------------------------------------------- /frontend/src/app/register-page/register-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/register-page/register-page.component.html -------------------------------------------------------------------------------- /frontend/src/app/register-page/register-page.component.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/register-page/register-page.component.sass -------------------------------------------------------------------------------- /frontend/src/app/register-page/register-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/register-page/register-page.component.ts -------------------------------------------------------------------------------- /frontend/src/app/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /frontend/src/app/sidebar/sidebar.component.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/sidebar/sidebar.component.sass -------------------------------------------------------------------------------- /frontend/src/app/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /frontend/src/app/survey-redirect.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/survey-redirect.guard.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/survey-redirect.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/survey-redirect.guard.ts -------------------------------------------------------------------------------- /frontend/src/app/tooltip.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/tooltip.directive.ts -------------------------------------------------------------------------------- /frontend/src/app/tooltip/tooltip.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/tooltip/tooltip.component.html: -------------------------------------------------------------------------------- 1 |

tooltip works!

2 | -------------------------------------------------------------------------------- /frontend/src/app/tooltip/tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/app/tooltip/tooltip.component.ts -------------------------------------------------------------------------------- /frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/Blue-Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/Blue-Loading.gif -------------------------------------------------------------------------------- /frontend/src/assets/Centre logo white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/Centre logo white.svg -------------------------------------------------------------------------------- /frontend/src/assets/Google__G__Logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/Google__G__Logo.svg.png -------------------------------------------------------------------------------- /frontend/src/assets/White-Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/White-Loading.gif -------------------------------------------------------------------------------- /frontend/src/assets/addSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/addSource.png -------------------------------------------------------------------------------- /frontend/src/assets/apple-1-logo-png-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/apple-1-logo-png-transparent.png -------------------------------------------------------------------------------- /frontend/src/assets/cat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/cat-1.png -------------------------------------------------------------------------------- /frontend/src/assets/cat-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/cat-2.png -------------------------------------------------------------------------------- /frontend/src/assets/csv-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/csv-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/donalds-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/donalds-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/dp-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/dp-logo-blue.png -------------------------------------------------------------------------------- /frontend/src/assets/dp-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/dp-logo-white.png -------------------------------------------------------------------------------- /frontend/src/assets/f1-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/f1-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/facebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/facebook-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/google-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/google-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/google-reviews-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/google-reviews-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/google-reviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/google-reviews.png -------------------------------------------------------------------------------- /frontend/src/assets/helpPage/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/helpPage/register.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/add-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/add-blue.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/add-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/add-blue.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/add.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/allSources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/allSources.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/analytics.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/analytics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/analytics.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/anger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/anger.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/anger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/anger.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/arrow-right-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/arrow-right-solid.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/arrow-right-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/arrow-right-solid.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/arrowBlockLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/arrowBlockLeft.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/arrowBlockLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/arrowBlockLeft.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/arrowBlockRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/arrowBlockRight.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/arrowBlockRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/arrowBlockRight.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/back-arrow-right-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/back-arrow-right-light.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/bottom10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/bottom10.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/calendar.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/calendar.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/closeSidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/closeSidebar.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/comments.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/comments.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/contract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/contract.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/copy.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/disgust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/disgust.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/disgust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/disgust.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/edit.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/edit.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/editdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/editdark.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/editdark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/editdark.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/expand.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/fear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/fear.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/fear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/fear.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/graph.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/graph.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/grey-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/grey-trash.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/grey-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/grey-trash.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/help.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/hide-password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/hide-password.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/info-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/info-white.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/info.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/joy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/joy.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/joy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/joy.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/lock-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/lock-solid.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/lock-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/lock-solid.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/negative.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/negative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/negative.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/neutral-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/neutral-face.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/neutral-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/neutral-score.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/neutral-score.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/neutral-score.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/neutral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/neutral.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/no.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/openSidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/openSidebar.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/palette-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/palette-solid.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/palette-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/palette-solid.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/pen-solid-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/pen-solid-black.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/pen-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/pen-solid.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/pen-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/pen-solid.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/positive.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/positive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/positive.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/refresh.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/refresh.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/report.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/right-from-bracket-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/right-from-bracket-solid.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/right-from-bracket-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/right-from-bracket-solid.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/sadness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/sadness.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/sadness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/sadness.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/search.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/search.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/settings.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/settings.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/show-password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/show-password.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/sun.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/sun.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/support.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/surprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/surprise.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/surprise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/surprise.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/tooltip-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/tooltip-info.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/tooltip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/tooltip.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/top10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/top10.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/toxic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/toxic.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/trash-can-regular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/trash-can-regular.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/trash-can-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/trash-can-regular.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/trash-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/trash-solid.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/trash-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/trash-solid.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/tut-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/tut-left.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/tut-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/tut-right.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/undecided.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/undecided.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/up-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/up-arrow.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/white-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/white-plus.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/white-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/white-plus.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/yes-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/yes-green.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/yes.png -------------------------------------------------------------------------------- /frontend/src/assets/icons/yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/icons/yes.svg -------------------------------------------------------------------------------- /frontend/src/assets/instagram-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/instagram-Icon.png -------------------------------------------------------------------------------- /frontend/src/assets/live-review-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/live-review-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/live-review-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/live-review-logo.svg -------------------------------------------------------------------------------- /frontend/src/assets/logos/logo-small-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/logos/logo-small-blue.png -------------------------------------------------------------------------------- /frontend/src/assets/logos/logo-small-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/logos/logo-small-white.png -------------------------------------------------------------------------------- /frontend/src/assets/noDomains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/noDomains.png -------------------------------------------------------------------------------- /frontend/src/assets/noResults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/noResults.png -------------------------------------------------------------------------------- /frontend/src/assets/noSources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/noSources.png -------------------------------------------------------------------------------- /frontend/src/assets/reddit-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/reddit-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/starbucks-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/starbucks-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/stock-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/stock-bg.png -------------------------------------------------------------------------------- /frontend/src/assets/stock-profile-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/stock-profile-pic.jpg -------------------------------------------------------------------------------- /frontend/src/assets/test.csv: -------------------------------------------------------------------------------- 1 | time,reviews 2 | 2023-09-05T11:00:08Z,"i love it!" 3 | -------------------------------------------------------------------------------- /frontend/src/assets/tripadvisor-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/tripadvisor-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/trustpilot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/trustpilot-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/wave-squished.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/wave-squished.svg -------------------------------------------------------------------------------- /frontend/src/assets/youtube-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/assets/youtube-logo.png -------------------------------------------------------------------------------- /frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/favicon.ico -------------------------------------------------------------------------------- /frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/index.html -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/src/proxy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/proxy.config.json -------------------------------------------------------------------------------- /frontend/src/styles.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/src/styles.sass -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/frontend/tsconfig.spec.json -------------------------------------------------------------------------------- /general-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/general-readme.md -------------------------------------------------------------------------------- /nginx/dev-domainpulse.app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/nginx/dev-domainpulse.app.conf -------------------------------------------------------------------------------- /nginx/domainpulse.app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/nginx/domainpulse.app.conf -------------------------------------------------------------------------------- /nginx/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/nginx/entrypoint.sh -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/prod-domainpulse.app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/nginx/prod-domainpulse.app.conf -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Preprocessing-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/notebooks/.ipynb_checkpoints/Preprocessing-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/bert-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/notebooks/.ipynb_checkpoints/bert-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/Preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/notebooks/Preprocessing.ipynb -------------------------------------------------------------------------------- /notebooks/bert.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/notebooks/bert.ipynb -------------------------------------------------------------------------------- /prize-submission-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/prize-submission-readme.md -------------------------------------------------------------------------------- /prod-server-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/prod-server-compose.yml -------------------------------------------------------------------------------- /team-info-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/team-info-readme.md -------------------------------------------------------------------------------- /technical-details-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COS301-SE-2023/Domain-Pulse-A-Sentiment-Analysis-Platform/HEAD/technical-details-readme.md --------------------------------------------------------------------------------