Skip to content

Commit

Permalink
added basic swagger yaml for reference
Browse files Browse the repository at this point in the history
  • Loading branch information
kggx committed May 8, 2024
1 parent dd67be1 commit a7b7948
Show file tree
Hide file tree
Showing 4 changed files with 1,010 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,7 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

secrets/
# Sample flows to generate Swagger API
flows/
Empty file added outfile
Empty file.
14 changes: 14 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
packages = [
# MITM Proxy to reverse engineer apis
pkgs.mitmproxy
pkgs.mitmproxy2swagger

# Python 3.12 + packages
(pkgs.python312.withPackages (python-pkgs: [
python-pkgs.requestsn
]))
];
}
Loading

0 comments on commit a7b7948

Please sign in to comment.