# Insomnia Designer Designer is a spec-first API development app built in top of [Insomnia](https://github.com/getinsomnia/insomnia). ![Screenshot](https://user-images.githubusercontent.com/587576/62305922-dbd30800-b44e-11e9-8de6-ea8bdcb8d93b.png) ```shell 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](https://github.com/kong/studio/releases/) ## 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