{"id":25127745,"url":"https://github.com/zerdicorp/neurotriumph_chat__server","last_synced_at":"2025-07-07T07:11:39.028Z","repository":{"id":115871223,"uuid":"488837456","full_name":"ZERDICORP/neurotriumph_chat__server","owner":"ZERDICORP","description":"Turing test online platform (chat).","archived":false,"fork":false,"pushed_at":"2022-06-12T10:46:35.000Z","size":167,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-02T20:48:42.078Z","etag":null,"topics":["api","neurotriumph-chat","server","turing-test"],"latest_commit_sha":null,"homepage":"https://github.com/ZERDICORP/neurotriumph_chat__server/wiki","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZERDICORP.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-05T05:00:24.000Z","updated_at":"2024-04-18T13:11:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"a91be2c7-049c-4e0d-b81d-1218fbbb24df","html_url":"https://github.com/ZERDICORP/neurotriumph_chat__server","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ZERDICORP/neurotriumph_chat__server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZERDICORP%2Fneurotriumph_chat__server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZERDICORP%2Fneurotriumph_chat__server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZERDICORP%2Fneurotriumph_chat__server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZERDICORP%2Fneurotriumph_chat__server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZERDICORP","download_url":"https://codeload.github.com/ZERDICORP/neurotriumph_chat__server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZERDICORP%2Fneurotriumph_chat__server/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264032306,"owners_count":23546808,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","neurotriumph-chat","server","turing-test"],"created_at":"2025-02-08T11:18:04.207Z","updated_at":"2025-07-07T07:11:39.023Z","avatar_url":"https://github.com/ZERDICORP.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# neurotriumph_chat__server :robot: :speech_balloon: :man:\n#### Turing test online platform (chat).\n\n## How to start? :eyes:\n\u003e Work done in IntellijIDEA\n\n#### 1. Make sure you have mariadb installed\n```\n$ mysql --version\nmysql  Ver 15.1 Distrib 10.7.3-MariaDB, for Linux (x86_64) using readline 5.1\n```\n\n#### 2. Create a databases called `neurotriumph` and `neurotriumph_test`\n```\n$ mysql -u root -p\nMariaDB\u003e create database neurotriumph;\nMariaDB\u003e create database neurotriumph_test;\nMariaDB\u003e exit;\n```\n\n#### 3. Add file `src/main/resources/application.properties` with the following content\n\u003e Replace all values between \u003c\u003e.\n```\n# Custom Application Configuration\napp.secret=abc123\napp.lobby_spent_time=30000\napp.chat_messaging_delay=5000\napp.required_number_of_messages_to_make_a_choice=10\n\n# Database Configuration\nspring.datasource.driver-class-name=org.mariadb.jdbc.Driver\nspring.datasource.url=jdbc:mariadb://localhost:3306/neurotriumph?autoReconnect=true\nspring.datasource.username=\u003cDATABASE_USER\u003e\nspring.datasource.password=\u003cDATABASE_USER_PASSWORD\u003e\n\n# Hibernate Configuration\nspring.jpa.hibernate.ddl-auto=update\nspring.jpa.show-sql=true\nspring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MariaDB103Dialect\n\n# Spring Server Configuration\nserver.port=8000\nserver.error.include-message=always\nserver.servlet.context-path=/api/v1\n```\n\n#### 4. Add file `src/test/resources/test.properties` with the following content\n\u003e Replace all values between \u003c\u003e.\n```\n# Custom Application Configuration\napp.secret=abc123\napp.lobby_spent_time=0\napp.chat_messaging_delay=0\napp.required_number_of_messages_to_make_a_choice=0\n\n# Database Configuration\nspring.datasource.driver-class-name=org.mariadb.jdbc.Driver\nspring.datasource.url=jdbc:mariadb://localhost:3306/neurotriumph_test?autoReconnect=true\nspring.datasource.username=\u003cDATABASE_USER\u003e\nspring.datasource.password=\u003cDATABASE_USER_PASSWORD\u003e\n\n# Hibernate Configuration\nspring.jpa.hibernate.ddl-auto=create-drop\nspring.jpa.show-sql=true\nspring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MariaDB103Dialect\n\n# Spring Server Configuration\nserver.port=8000\nserver.error.include-message=always\nserver.servlet.context-path=/api/v1\n```\n\n#### 5. Now you can run the project :tada:\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerdicorp%2Fneurotriumph_chat__server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzerdicorp%2Fneurotriumph_chat__server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerdicorp%2Fneurotriumph_chat__server/lists"}