Handy Snippets - Vite + Typescript app for storing and sharing end-to-end encrypted notes online. This app uses GraphQL API to interact with Handy Snippets Backend
One-liner:
npx degit dariasmyr/handy-snippets-frontend my-app && cd my-app && git init && git add . && git commit -m "Initial commit" && npm install && cp .env.example .env && npm run gen && npm run start:dev
Step by step:
npx degit dariasmyr/handy-snippets-frontend my-appcd my-appgit init && git add . && git commit -m "Initial commit"npm installcp .env.example .env- Edit
.env npm run gennpm run start:dev
Production build:
npm run buildnpm start:prod
Run npm run gen after every GraphQL API Schema changed or after ./graphql/*.graphql files are modified
