{"id":18735879,"url":"https://github.com/tsimpdim/3rstore","last_synced_at":"2026-04-10T13:31:08.293Z","repository":{"id":27020775,"uuid":"112176318","full_name":"TsimpDim/3RStore","owner":"TsimpDim","description":"A Python Flask application used to store links online.","archived":false,"fork":false,"pushed_at":"2022-12-27T15:33:45.000Z","size":760,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-03T16:19:26.921Z","etag":null,"topics":["bootstrap","flask","flask-application","html","javascript","jinja2","postgresql","python","wtforms"],"latest_commit_sha":null,"homepage":null,"language":"Python","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/TsimpDim.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}},"created_at":"2017-11-27T09:34:45.000Z","updated_at":"2022-01-09T19:39:21.000Z","dependencies_parsed_at":"2023-01-14T05:49:33.354Z","dependency_job_id":null,"html_url":"https://github.com/TsimpDim/3RStore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TsimpDim/3RStore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TsimpDim%2F3RStore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TsimpDim%2F3RStore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TsimpDim%2F3RStore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TsimpDim%2F3RStore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TsimpDim","download_url":"https://codeload.github.com/TsimpDim/3RStore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TsimpDim%2F3RStore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31645178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"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":["bootstrap","flask","flask-application","html","javascript","jinja2","postgresql","python","wtforms"],"created_at":"2024-11-07T15:18:27.770Z","updated_at":"2026-04-10T13:31:08.267Z","avatar_url":"https://github.com/TsimpDim.png","language":"Python","readme":"\u003cimg src=\"https://threerstore.herokuapp.com/static/icons/3rstore_logo.png\" width=\"80px\" height=\"80px\"\u003e\n\nAn application for storing and managing links online.\n\n## Status\n\nThis application is currently available [here](http://threerstore.herokuapp.com)\n\n## Running it locally\n\nOoh boy here we go.\n\nFirst of all you need [Python 3.x](https://www.python.org/downloads/)\nThen, go ahead and install PIP. Instructions for its installation are available [here](https://pip.pypa.io/en/stable/installing/)\n\nTo make sure all the depedencies are installed run:\n\n    pip install -r requirements.txt\n\nNext, you must have a PostgreSQL database created. For that you can use [PG Admin](https://www.pgadmin.org/).\n\nYou will then have to create a `config.json` file which has the following structure:\n\n```\n{\n    \"DB\":{\n        \"USER\": \u003cDB_USER\u003e,\n        \"PWD\": \u003cDB_PASSWORD\u003e,\n        \"HOST\": \u003cDB_HOST\u003e,\n        \"DATABASE\": \u003cDB_NAME\u003e,\n        \"PORT\": \u003cDB_PORT\u003e\n    },\n    \"SECRET_KEY\": \u003cyour_scecret_key\u003e,\n    \"MAIL_SERVER\":\"smtp.gmail.com\",\n    \"MAIL_PORT\":465,\n    \"MAIL_USE_TLS\":false,\n    \"MAIL_USE_SSL\":true,\n    \"MAIL_USERNAME\": \u003cEM_USER\u003e,\n    \"MAIL_PASSWORD\": \u003cEM_PASSWORD\u003e,\n    \"MAIL_DEFAULT_SENDER\": \u003cEM_USER\u003e\n}\n```\n\n- The `MAIL` settings/fields are necessary for the password recovery process, if you don't plant on using the feature you can remove them.\n\n- The specified `MAIL_SERVER` and `MAIL_PORT` are for use with a GMAIL address.\n\n- The `MAIL_DEFAULT_SENDER` property can be removed but then you will have to specify the `sender` when building a `Message`\n\n---\n\nSince the project's file structure has changed, a simple\n\n    python __init__.py\n\nwill not suffice.\n\n### Running the app with docker-compose\n\nIt's heavily encouraged to run the project locally using docker-compose.\nSimply running `docker-compose up` should suffice. Afterwards, you should be\nable to access the site on `localhost:5000`.\n\n### Running the app with flask\n\nFirst you need to set the environment variable for the application.\n\nOne way to do this is :\n\nFrom /3RStore\n\nOn linux:\n\n    export FLASK_APP=_3RStore/__init__.py\n\nOn windows:\n\n    set FLASK_APP=_3RStore/__init__.py\n\nThen (from this directory) simply run :\n\n    flask run\n\nto launch the server. A prompt indicating sucessfull launch should appear in the console.\n\nIf you want to set Flask's debug mode on you can use:\n\n    export FLASK_DEBUG=true\n\nAnd\n\n    set FLASK_DEBUG=true\n\nFor Linux and Windows respectively.\n\nFinally, you can open your browser and go to\n\n    http://127.0.0.1:5000/\n\n_If you get an error regarding the build environment, set/export the `FLAK_ENV` variable to whatever you please_\n\n---\n\n### Running the app with waitress\n\nFirst run\n\n    python server.py\n\nThen go to\n\n    http://127.0.0.1:8080/\n\nTa-da!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsimpdim%2F3rstore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsimpdim%2F3rstore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsimpdim%2F3rstore/lists"}