Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wisdomfusion/api-dock
API Dock, a web application for managing and testing your APIs and docs, implemented using Python, Flask and Vue.js.
https://github.com/wisdomfusion/api-dock
flask python3 vuejs2
Last synced: about 6 hours ago
JSON representation
API Dock, a web application for managing and testing your APIs and docs, implemented using Python, Flask and Vue.js.
- Host: GitHub
- URL: https://github.com/wisdomfusion/api-dock
- Owner: wisdomfusion
- License: mit
- Created: 2018-04-19T03:14:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T18:56:20.000Z (almost 2 years ago)
- Last Synced: 2023-08-03T01:11:50.905Z (over 1 year ago)
- Topics: flask, python3, vuejs2
- Language: Python
- Homepage:
- Size: 628 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# api-dock
**API Dock**, a web application for managing and testing your APIs and docs.
# INTRODUCTION
API Dock, a web application for managing and testing your APIs and docs, implemented using Python, Flask and Vue.js.
# Prerequisites
- Python 3.6.*
See `requirements/*.txt` and `client/package.json`.
# INSTALLATION
**Install `pip` and `virtualenv`**
```
# pip install -U pip
# pip install virtualenv
```**Clone the application**
```
$ git clone [email protected]:WisdomFusion/api-dock.git
$ cd api-dock/
```**Create Python virtual environment (Linux and macOS shell)**
```
$ virtualenv venv
$ source venv/bin/activate
```**Create Python virtual environment (Windows cmd)**
```
$ python -m venv venv
$ venv\Scripts\activate.bat
$ python -m pip install -U pip
```**Add `.env` file to application root folder**
```
APP_CONFIG=development
APP_URL=
APP_COVERAGE=1SECRET_KEY=123456
# PostgreSQL connection
#SQLALCHEMY_DATABASE_URI=postgresql://:@[:]/
#SQLALCHEMY_DATABASE_TEST_URI=postgresql://:@[:]/# MySQL connection using PyMySQL
#SQLALCHEMY_DATABASE_URI=mysql+pymysql://:@[:]/
#SQLALCHEMY_DATABASE_TEST_URI=mysql+pymysql://:@[:]/# MySQL connection using PyMySQL via UNIX sock instead of port
SQLALCHEMY_DATABASE_URI=mysql+pymysql://:@/?unix_socket=
SQLALCHEMY_DATABASE_TEST_URI=mysql+pymysql://:@/?unix_socket=# SQLite connection
#SQLALCHEMY_DATABASE_URI=sqlite:////db/
#SQLALCHEMY_DATABASE_TEST_URI=sqlite:////db/CACHE_DRIVER=redis
SESSION_DRIVER=redisREDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379JWT_SECRET_KEY=123456
JWT_TTL=60APP_ROOT_ADMIN=sysop
USER_PER_PAGE=20
```
Modify placehold configurations above.**Deploy the application**
```
$ pip install -r requirements.txt$ mysql -u user -p
> create database apidb;
> create database apitestdb;
> \q$ python run.py migrate
$ python run.py deploy
```**Run the application**
```
$ python run.py runserver
```# CONTRIBUTION
Fork the repo, commit your code or corrections, and request a PR. :)