{"id":18124580,"url":"https://github.com/s0fft/true-publish-protocol","last_synced_at":"2026-04-10T00:58:07.163Z","repository":{"id":260482322,"uuid":"859391827","full_name":"S0fft/True-Publish-Protocol","owner":"S0fft","description":"Information-Resource — SSR Media Project on Flask + API on Flask-RESTful","archived":false,"fork":false,"pushed_at":"2024-10-31T14:54:58.000Z","size":295,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-17T17:51:00.504Z","etag":null,"topics":["api","curl","flask","flask-restful","jinja2","postman","python3","server-side-rendering","sqlalchemy","sqlite"],"latest_commit_sha":null,"homepage":"","language":"Python","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/S0fft.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,"zenodo":null}},"created_at":"2024-09-18T15:26:25.000Z","updated_at":"2024-10-31T14:55:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"c048d6ed-0832-495c-b705-b9d505989c40","html_url":"https://github.com/S0fft/True-Publish-Protocol","commit_stats":null,"previous_names":["s0fft/true-publish-protocol"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/S0fft/True-Publish-Protocol","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S0fft%2FTrue-Publish-Protocol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S0fft%2FTrue-Publish-Protocol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S0fft%2FTrue-Publish-Protocol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S0fft%2FTrue-Publish-Protocol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/S0fft","download_url":"https://codeload.github.com/S0fft/True-Publish-Protocol/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S0fft%2FTrue-Publish-Protocol/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268294023,"owners_count":24227595,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["api","curl","flask","flask-restful","jinja2","postman","python3","server-side-rendering","sqlalchemy","sqlite"],"created_at":"2024-11-01T08:06:27.667Z","updated_at":"2025-12-30T21:52:39.514Z","avatar_url":"https://github.com/S0fft.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# True-Publish-Protocol\n#### Information-Resource — SSR Media Project on Flask + API on Flask-RESTful\n\nAn information platform that allows users to publish a variety of articles. \nThe application is built using SSR architecture and also includes an API for managing articles.\n\n#### Stack:\n - Pyhton\n - Flask\n - Flask-RESTful \n - Jinja2 \n - SQLAlchemy \n - SQLite\n\nAdditional libraries are specified in the `requirements.txt` file.\n\n## Project Setup on Windows\n\n### - Installing the Stack\nTo begin, install: [Python](https://www.python.org/downloads/)\n\u003cbr\u003e\nLinks are provided to the latest version of the tools.\n\n### - Cloning a Project from GitHub\nCreate a root directory on your computer, then open it in your code editor or terminal.\n\u003cbr\u003e\nNext, write this command into the command line:\n```powershell\ngit clone https://github.com/S0fft/True-Publish-Protocol.git\n```\nYou will see the project files appear in your directory.\n\n### - Creating a Virtual Environment\nCreate a virtual environment:\n```powershell\npython -m venv .venv\n```\n\nAnd activate it:\n\n```powershell\n.venv\\Scripts\\Activate\n``` \n### - Installing the Requirements\nNext, install packages:\n\n```powershell\npython.exe -m pip install --upgrade pip\n``` \n```powershell\npip install -r requirements.txt\n```\n\n ### - Applying the Migrations\nRun the console in the root directory of the project to access application files and the database.\n```bash\npython\n```\nAfterwards, apply migrations in the Python console\n```bash\napp.app_context().push()\ndb.create_all()\n```\n\n### - Running the Server\nThen, run server:\n```powershell\npython main.py\n```\nAfter starting the server, you can access the application by navigating to `http://127.0.0.1:5000` in your browser.\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ch3\u003e Project Setup on Unix-Like Systems \u003c/h3\u003e\u003c/summary\u003e\nThese commands do the same thing as described above: \n\u003cbr\u003e\n\n### - Installing the Stack\nTo begin, install: [Python](https://www.python.org/downloads/)\n\u003cbr\u003e\nLinks are provided to the latest version of the tools.\n\n### - Cloning a Project from GitHub\nCreate a root directory on your computer, then open it in your code editor or terminal.\n\u003cbr\u003e\nNext, write this command into the command line:\n```powershell\ngit clone https://github.com/S0fft/True-Publish-Protocol.git\n```\nYou will see the project files appear in your directory.\n\n### - Creating a Virtual Environment\n```bash\npython3 -m pip install --upgrade pip\n```\n\n```bash\nsource ./venv/bin/activate\n```\n\n### - Installing the Requirements\n```bash\npip install --upgrade pip\n```\n```bash\npip install -r requirements.txt\n```\n\n### - Applying the Migrations\nRun the console in the root directory of the project to access application files and the database.\n```bash\npython3\n```\nAfterwards, apply migrations in the Python console\n```bash\napp.app_context().push()\ndb.create_all()\n```\n\n### - Running the Server\n```powershell\npython main.py\n```\nAfter starting the server, you can access the application by navigating to `http://127.0.0.1:5000` in your browser.\n\n\u003c/details\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs0fft%2Ftrue-publish-protocol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs0fft%2Ftrue-publish-protocol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs0fft%2Ftrue-publish-protocol/lists"}