{"id":20516725,"url":"https://github.com/alertedcoffee/archive-manager","last_synced_at":"2026-04-25T11:36:42.129Z","repository":{"id":251215251,"uuid":"761963291","full_name":"AlertedCoffee/archive-manager","owner":"AlertedCoffee","description":"FullStak web application. File system with context search","archived":false,"fork":false,"pushed_at":"2024-08-06T10:27:06.000Z","size":5987,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-01T10:44:03.093Z","etag":null,"topics":["deeppavlov","java","search-engine","spring-boot","web"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AlertedCoffee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-22T20:20:40.000Z","updated_at":"2024-08-06T10:27:09.000Z","dependencies_parsed_at":"2024-11-15T21:30:35.013Z","dependency_job_id":"e59110cb-851e-4f10-ad9c-8394c31c2c6a","html_url":"https://github.com/AlertedCoffee/archive-manager","commit_stats":null,"previous_names":["alertedcoffee/archive-manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AlertedCoffee/archive-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlertedCoffee%2Farchive-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlertedCoffee%2Farchive-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlertedCoffee%2Farchive-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlertedCoffee%2Farchive-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlertedCoffee","download_url":"https://codeload.github.com/AlertedCoffee/archive-manager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlertedCoffee%2Farchive-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32261117,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T09:15:33.318Z","status":"ssl_error","status_checked_at":"2026-04-25T09:15:31.997Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["deeppavlov","java","search-engine","spring-boot","web"],"created_at":"2024-11-15T21:30:30.353Z","updated_at":"2026-04-25T11:36:37.122Z","avatar_url":"https://github.com/AlertedCoffee.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Archive Manager\n\nThe application serves as a [cloud storage](https://i.imgur.com/XXlISiE.png) where users can upload documents in pdf, odt, and docx formats.\n\n**The main function of the system** is to provide convenient access to files. To achieve this, the following context search systems are implemented:\n+ **Apache Lucene** - full-text search.\n![Search example](https://i.imgur.com/7Wa31dk.png)\n![Expanded search result example](https://i.imgur.com/AqW8NbY.png)\n+ **DeepPavlov Context Question Answering** - neural context search based on the squad_ru_bert model. This neural system finds the answer to the user's question within the provided context. The answer is a text fragment that answers the question.\n![Search example](https://i.imgur.com/GP08Rqf.png)\n![Expanded search result example](https://i.imgur.com/IKnf7LS.png)\n\n**Additional features:**\n+ Storage management functions are implemented in the file system. File management panel:\n![File management panel](https://i.imgur.com/CWZY3Ww.png)\n+ Secure deletion to the recycle bin.\n![Recycle bin](https://i.imgur.com/a4nCS8K.png)\n+ Authorization system using SpringSecurity (Don't forget to configure access through \u003ccode\u003eSecurityConfig.java\u003c/code\u003e. In the repository, it is commented out) \u003cbr\u003e\n![Authorization](https://i.imgur.com/EBIhtGh.png)\n\nAdmin user initialization:\n\n```\ncurl -X POST http://localhost:8080/api/add_user -H 'Content-Type: application/json' -d '\n{\n    \"name\" : \"admin\",\n    \"password\" : \"admin\",\n    \"roles\" : \"ROLE_ADMIN\"\n}'\n```\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n____________________\n\n**Build:**\n+ Postgres\n```\ndocker run -d \\\n  --name postgres_container \\\n  -e POSTGRES_USER=postgres \\\n  -e POSTGRES_PASSWORD=admin \\\n  -e POSTGRES_DB=archive-users \\\n  -p 5432:5432 \\\n  -v \u003cyour_data_path\u003e:/var/lib/postgresql/data \\\n  --restart always \\\n  postgres:16\n```\n+ [DeepPavlov](https://docs.deeppavlov.ai/en/master/features/models/SQuAD.html#2.-Get-started-with-the-model) \u003cbr\u003e\n    Example of launching [Rest API](https://docs.deeppavlov.ai/en/master/integrations/rest_api.html#rest-api-usage-example) \u003cbr\u003e\n    \u003ccode\u003eserver_config.json\u003c/code\u003e for this\n    ```\n    {\n        \"common_defaults\": {\n            \"host\": \"127.0.0.1\",\n            \"port\": 5088,\n            \"model_args_names\": [],\n            \"https\": false,\n            \"https_cert_path\": \"\",\n            \"https_key_path\": \"\",\n            \"socket_type\": \"TCP\",\n            \"unix_socket_file\": \"/tmp/deeppavlov_socket.s\",\n            \"socket_launch_message\": \"launching socket server at\"\n        }\n    }\n    ```\n\n\n**Futures:**\n+ Docker container\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falertedcoffee%2Farchive-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falertedcoffee%2Farchive-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falertedcoffee%2Farchive-manager/lists"}