{"id":18852345,"url":"https://github.com/wisdomfusion/api-dock","last_synced_at":"2025-04-14T09:53:41.428Z","repository":{"id":42342416,"uuid":"130152726","full_name":"wisdomfusion/api-dock","owner":"wisdomfusion","description":"API Dock, a web application for managing and testing your APIs and docs, implemented using Python, Flask and Vue.js.","archived":false,"fork":false,"pushed_at":"2022-12-08T18:56:20.000Z","size":643,"stargazers_count":5,"open_issues_count":28,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-27T23:12:25.195Z","etag":null,"topics":["flask","python3","vuejs2"],"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/wisdomfusion.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}},"created_at":"2018-04-19T03:14:09.000Z","updated_at":"2019-07-03T21:28:10.000Z","dependencies_parsed_at":"2023-01-25T15:31:39.250Z","dependency_job_id":null,"html_url":"https://github.com/wisdomfusion/api-dock","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wisdomfusion%2Fapi-dock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wisdomfusion%2Fapi-dock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wisdomfusion%2Fapi-dock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wisdomfusion%2Fapi-dock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wisdomfusion","download_url":"https://codeload.github.com/wisdomfusion/api-dock/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248860371,"owners_count":21173339,"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":["flask","python3","vuejs2"],"created_at":"2024-11-08T03:39:21.373Z","updated_at":"2025-04-14T09:53:41.396Z","avatar_url":"https://github.com/wisdomfusion.png","language":"Python","readme":"# api-dock\n\n**API Dock**, a web application for managing and testing your APIs and docs.\n\n# INTRODUCTION\n\nAPI Dock, a web application for managing and testing your APIs and docs, implemented using Python, Flask and Vue.js.\n\n# Prerequisites\n\n- Python 3.6.*\n\nSee `requirements/*.txt` and `client/package.json`.\n\n# INSTALLATION\n\n**Install `pip` and `virtualenv`**\n```\n# pip install -U pip\n# pip install virtualenv\n```\n\n**Clone the application**\n```\n$ git clone git@github.com:WisdomFusion/api-dock.git\n$ cd api-dock/\n```\n\n**Create Python virtual environment (Linux and macOS shell)**\n```\n$ virtualenv venv\n$ source venv/bin/activate\n```\n\n**Create Python virtual environment (Windows cmd)**\n```\n$ python -m venv venv\n$ venv\\Scripts\\activate.bat\n$ python -m pip install -U pip\n```\n\n**Add `.env` file to application root folder**\n```\nAPP_CONFIG=development\nAPP_URL=\nAPP_COVERAGE=1\n\nSECRET_KEY=123456\n\n# PostgreSQL connection\n#SQLALCHEMY_DATABASE_URI=postgresql://\u003cdb_user\u003e:\u003cpassword\u003e@\u003chost\u003e[:\u003cport\u003e]/\u003cdb_name\u003e\n#SQLALCHEMY_DATABASE_TEST_URI=postgresql://\u003cdb_user\u003e:\u003cpassword\u003e@\u003chost\u003e[:\u003cport\u003e]/\u003ctest_db_name\u003e\n\n# MySQL connection using PyMySQL\n#SQLALCHEMY_DATABASE_URI=mysql+pymysql://\u003cdb_user\u003e:\u003cpassword\u003e@\u003chost\u003e[:\u003cport\u003e]/\u003cdb_name\u003e\n#SQLALCHEMY_DATABASE_TEST_URI=mysql+pymysql://\u003cdb_user\u003e:\u003cpassword\u003e@\u003chost\u003e[:\u003cport\u003e]/\u003ctest_db_name\u003e\n\n# MySQL connection using PyMySQL via UNIX sock instead of port\nSQLALCHEMY_DATABASE_URI=mysql+pymysql://\u003cdb_user\u003e:\u003cpassword\u003e@\u003chost\u003e/\u003cdb_name\u003e?unix_socket=\u003cmysqld_sock_path\u003e\nSQLALCHEMY_DATABASE_TEST_URI=mysql+pymysql://\u003cdb_user\u003e:\u003cpassword\u003e@\u003chost\u003e/\u003ctest_db_name\u003e?unix_socket=\u003cmysqld_sock_path\u003e\n\n# SQLite connection\n#SQLALCHEMY_DATABASE_URI=sqlite:////db/\u003cdb_file.sqlite\u003e\n#SQLALCHEMY_DATABASE_TEST_URI=sqlite:////db/\u003ctest_db_file.sqlite\u003e\n\nCACHE_DRIVER=redis\nSESSION_DRIVER=redis\n\nREDIS_HOST=127.0.0.1\nREDIS_PASSWORD=null\nREDIS_PORT=6379\n\nJWT_SECRET_KEY=123456\nJWT_TTL=60\n\nAPP_ROOT_ADMIN=sysop\n\nUSER_PER_PAGE=20\n```\nModify placehold configurations above.\n\n\n**Deploy the application**\n```\n$ pip install -r requirements.txt\n\n$ mysql -u user -p\n\u003e create database apidb;\n\u003e create database apitestdb;\n\u003e \\q\n\n$ python run.py migrate\n$ python run.py deploy\n```\n\n**Run the application**\n```\n$ python run.py runserver\n```\n\n# CONTRIBUTION\n\nFork the repo, commit your code or corrections, and request a PR. :)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwisdomfusion%2Fapi-dock","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwisdomfusion%2Fapi-dock","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwisdomfusion%2Fapi-dock/lists"}