├── .envrc-example ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .tool-versions ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── Procfile ├── README.md ├── create_tables.py ├── database ├── __init__.py └── database.py ├── main.py ├── perfomance_test_setup.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── reset_tables.py ├── static ├── css │ └── main.css └── main.js └── templates ├── base.html ├── edit.html └── index.html /.envrc-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/.envrc-example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | .envrc 6 | *.pyc -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | python 3.11.1 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/NOTICE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/README.md -------------------------------------------------------------------------------- /create_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/create_tables.py -------------------------------------------------------------------------------- /database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/database/database.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/main.py -------------------------------------------------------------------------------- /perfomance_test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/perfomance_test_setup.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/requirements.txt -------------------------------------------------------------------------------- /reset_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/reset_tables.py -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/static/main.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/templates/edit.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/api-testing-foundations-4403636/HEAD/templates/index.html --------------------------------------------------------------------------------