Go to file
2020-04-26 14:08:50 -07:00
.github Rename some old things 2020-04-26 14:08:50 -07:00
packages Rename some old things 2020-04-26 14:08:50 -07:00
plugins Initial designer merge 2020-04-26 13:33:39 -07:00
screenshots Initial designer merge 2020-04-26 13:33:39 -07:00
.dockerignore Statically link libcurl on Linux builds (#879) 2018-04-20 18:31:57 -04:00
.editorconfig Version Control (beta) (#1439) 2019-04-17 17:50:03 -07:00
.eslintignore Initial designer merge 2020-04-26 13:33:39 -07:00
.eslintrc.json Update Babel and ESLint and fix all related errors (#2032) 2020-04-09 10:32:19 -07:00
.gitattributes Add .gitattributes (#506) 2017-10-10 22:55:22 +02:00
.gitignore Version Control (beta) (#1439) 2019-04-17 17:50:03 -07:00
.nvmrc Version Control (beta) (#1439) 2019-04-17 17:50:03 -07:00
.prettierignore Initial designer merge 2020-04-26 13:33:39 -07:00
.prettierrc Add trailing commas to ESLint + Prettier 2018-12-12 12:36:11 -05:00
.travis.yml Initial designer merge 2020-04-26 13:33:39 -07:00
CODE_OF_CONDUCT.md Update CODE_OF_CONDUCT.md 2018-01-26 14:39:27 +08:00
CONTRIBUTING.md Rename getinsomnia > kong 2019-12-17 12:16:08 -05:00
DEVELOPMENT.md Initial designer merge 2020-04-26 13:33:39 -07:00
lerna.json Initial designer merge 2020-04-26 13:33:39 -07:00
LICENSE Remove copyright year in MIT license 2019-05-20 11:24:55 -04:00
netlify.toml Initial designer merge 2020-04-26 13:33:39 -07:00
package-lock.json Initial designer merge 2020-04-26 13:33:39 -07:00
package.json Rename some old things 2020-04-26 14:08:50 -07:00
README.md Initial designer merge 2020-04-26 13:33:39 -07:00

Insomnia Designer

Designer is a spec-first API development app built in top of Insomnia.

Screenshot

npm run bootstrap
npm run app-start

Creating Releases

  1. Bump version number in packages/insomnia-app/package.json app.version property.
  2. Commit changes into Git
  3. Create git tag to match version git tag v1.0.0
  4. Push tags git push --tags
  5. GitHub action will automatically on tags and test/build/package the app into a GitHub Release

Merging Insomnia Changes

  1. Add git remote called insomnia that points to Insomnia repo
  2. Pull Insomnia changes with git pull --no-tags insomnia develop
  3. Fix conflicts if any occur
  4. Push merged changes