mlabouardy / swaggymnia

Generate Swagger 🌀 documentation for your existing API in Insomnia
MIT License
428 stars 31 forks source link

Ignores variables in url #12

Closed Fyb3roptik closed 5 years ago

Fyb3roptik commented 5 years ago

When I run this against an exported file from Insomnia, it does not put in the variables I had! If I had a base url or version number, they show up blank in the yaml file

Fyb3roptik commented 5 years ago

Example

"url": "{{ base_url }}/{{ version  }}/auth/login"

Becomes

"//auth/login"

Should be

"https://mybaseurl.com/v4/auth/login"

Do I need to somehow specify the env variables to use?