├── .git-blame-ignore-revs ├── .github ├── actions │ └── elastic-beanstalk │ │ ├── .yarnrc.yml │ │ ├── README.md │ │ ├── action.yml │ │ ├── bin │ │ └── index.js │ │ ├── package.json │ │ ├── src │ │ ├── index.ts │ │ └── main.ts │ │ ├── tsconfig.json │ │ └── yarn.lock └── workflows │ ├── clojure.yml │ └── js.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── client ├── .dockerignore ├── .editorconfig ├── .prettierignore ├── Dockerfile.mcp ├── Makefile ├── README.md ├── fly.toml ├── package.json ├── packages │ ├── admin │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── __types__ │ │ │ │ ├── typeUtils.ts │ │ │ │ └── typesTests.ts │ │ │ ├── index.ts │ │ │ ├── subscribe.ts │ │ │ └── version.ts │ │ ├── tsconfig.dev.json │ │ ├── tsconfig.json │ │ └── tsconfig.test.json │ ├── cli │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── rename.test.ts │ │ ├── bin │ │ │ └── index.js │ │ ├── package.json │ │ ├── src │ │ │ ├── index.js │ │ │ ├── rename.ts │ │ │ ├── renderSchemaPlan.ts │ │ │ ├── ui │ │ │ │ ├── index.ts │ │ │ │ └── lib.ts │ │ │ ├── util │ │ │ │ ├── findConfigCandidates.ts │ │ │ │ ├── fs.ts │ │ │ │ ├── getAuthPaths.ts │ │ │ │ ├── isHeadlessEnvironment.ts │ │ │ │ ├── loadConfig.ts │ │ │ │ ├── loadEnv.ts │ │ │ │ ├── packageManager.js │ │ │ │ ├── promptOk.ts │ │ │ │ └── renamePrompt.ts │ │ │ └── version.js │ │ └── tsconfig.json │ ├── core │ │ ├── .npmignore │ │ ├── README.md │ │ ├── __example__ │ │ │ ├── standalone.esm.html │ │ │ └── standalone.umd.html │ │ ├── __tests__ │ │ │ └── src │ │ │ │ ├── Reactor.test.js │ │ │ │ ├── data │ │ │ │ ├── movies │ │ │ │ │ ├── attrs.json │ │ │ │ │ └── triples.json │ │ │ │ └── zeneca │ │ │ │ │ ├── attrs.json │ │ │ │ │ └── triples.json │ │ │ │ ├── datalog.test.js │ │ │ │ ├── instaml.test.js │ │ │ │ ├── instaql.bench.js │ │ │ │ ├── instaql.test.js │ │ │ │ ├── instaqlInference.test.js │ │ │ │ ├── queryValidation.test.ts │ │ │ │ ├── schema.test.ts │ │ │ │ ├── store.test.js │ │ │ │ ├── transactionValidation.test.ts │ │ │ │ ├── typeUtils.ts │ │ │ │ └── utils │ │ │ │ ├── PersistedObject.test.ts │ │ │ │ ├── dates.test.ts │ │ │ │ └── object.test.js │ │ ├── package.json │ │ ├── src │ │ │ ├── Connection.ts │ │ │ ├── InMemoryStorage.ts │ │ │ ├── IndexedDBStorage.ts │ │ │ ├── InstantError.ts │ │ │ ├── Reactor.js │ │ │ ├── StorageAPI.ts │ │ │ ├── SyncTable.ts │ │ │ ├── WindowNetworkListener.js │ │ │ ├── __types__ │ │ │ │ ├── fieldsTypeTest.ts │ │ │ │ ├── typeUtils.ts │ │ │ │ └── useDatesTypeTest.ts │ │ │ ├── attrTypes.ts │ │ │ ├── authAPI.ts │ │ │ ├── clientTypes.ts │ │ │ ├── coreTypes.ts │ │ │ ├── datalog.js │ │ │ ├── devtool.ts │ │ │ ├── helperTypes.ts │ │ │ ├── index.ts │ │ │ ├── instaml.js │ │ │ ├── instaql.js │ │ │ ├── instatx.ts │ │ │ ├── model │ │ │ │ └── instaqlResult.js │ │ │ ├── presence.ts │ │ │ ├── presenceTypes.ts │ │ │ ├── queryTypes.ts │ │ │ ├── queryValidation.ts │ │ │ ├── rulesTypes.ts │ │ │ ├── sanityCheckQueries.ts │ │ │ ├── schema.ts │ │ │ ├── schemaTypes.ts │ │ │ ├── store.js │ │ │ ├── transactionValidation.ts │ │ │ ├── utils │ │ │ │ ├── Deferred.js │ │ │ │ ├── PersistedObject.ts │ │ │ │ ├── dates.ts │ │ │ │ ├── error.ts │ │ │ │ ├── fetch.ts │ │ │ │ ├── flags.ts │ │ │ │ ├── linkIndex.ts │ │ │ │ ├── log.ts │ │ │ │ ├── object.js │ │ │ │ ├── pgtime.ts │ │ │ │ ├── pick.js │ │ │ │ ├── strings.ts │ │ │ │ ├── uuid.ts │ │ │ │ └── weakHash.ts │ │ │ └── version.ts │ │ ├── tsconfig.cjs.dev.json │ │ ├── tsconfig.dev.json │ │ ├── tsconfig.json │ │ ├── tsconfig.test.json │ │ └── vite.config.ts │ ├── create-instant-app │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── claude.ts │ │ │ ├── cli.ts │ │ │ ├── consts.ts │ │ │ ├── env.ts │ │ │ ├── git.ts │ │ │ ├── index.ts │ │ │ ├── installPackages.ts │ │ │ ├── login.ts │ │ │ ├── ruleFiles.ts │ │ │ ├── scaffold.ts │ │ │ ├── terminalTheme.ts │ │ │ └── utils │ │ │ │ ├── fetch.ts │ │ │ │ ├── getUserPkgManager.ts │ │ │ │ ├── logger.ts │ │ │ │ ├── title.ts │ │ │ │ └── validateAppName.ts │ │ ├── template │ │ │ ├── base │ │ │ │ ├── expo │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _env │ │ │ │ │ ├── _gitignore │ │ │ │ │ ├── app.json │ │ │ │ │ ├── app │ │ │ │ │ │ ├── +not-found.tsx │ │ │ │ │ │ ├── _layout.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ └── SpaceMono-Regular.ttf │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── adaptive-icon.png │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── partial-react-logo.png │ │ │ │ │ │ │ ├── react-logo.png │ │ │ │ │ │ │ ├── react-logo@2x.png │ │ │ │ │ │ │ ├── react-logo@3x.png │ │ │ │ │ │ │ └── splash-icon.png │ │ │ │ │ ├── babel.config.js │ │ │ │ │ ├── constants │ │ │ │ │ │ └── Colors.ts │ │ │ │ │ ├── eslint.config.js │ │ │ │ │ ├── expo-env.d.ts │ │ │ │ │ ├── global.css │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useColorScheme.ts │ │ │ │ │ │ ├── useColorScheme.web.ts │ │ │ │ │ │ └── useThemeColor.ts │ │ │ │ │ ├── instant.perms.ts │ │ │ │ │ ├── instant.schema.ts │ │ │ │ │ ├── lib │ │ │ │ │ │ └── db.ts │ │ │ │ │ ├── metro.config.js │ │ │ │ │ ├── nativewind-env.d.ts │ │ │ │ │ ├── package.json │ │ │ │ │ ├── scripts │ │ │ │ │ │ └── reset-project.js │ │ │ │ │ ├── tailwind.config.js │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── next-js-app-dir │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _env │ │ │ │ │ ├── _gitignore │ │ │ │ │ ├── next-env.d.ts │ │ │ │ │ ├── next.config.ts │ │ │ │ │ ├── package.json │ │ │ │ │ ├── postcss.config.mjs │ │ │ │ │ ├── public │ │ │ │ │ │ ├── file.svg │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ ├── vercel.svg │ │ │ │ │ │ └── window.svg │ │ │ │ │ ├── src │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ ├── globals.css │ │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── instant.perms.ts │ │ │ │ │ │ ├── instant.schema.ts │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── db.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ └── vite-vanilla │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _env │ │ │ │ │ ├── _gitignore │ │ │ │ │ ├── index.html │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ └── vite.svg │ │ │ │ │ ├── src │ │ │ │ │ ├── instant.perms.ts │ │ │ │ │ ├── instant.schema.ts │ │ │ │ │ ├── lib │ │ │ │ │ │ └── db.ts │ │ │ │ │ ├── main.ts │ │ │ │ │ ├── style.css │ │ │ │ │ ├── typescript.svg │ │ │ │ │ └── vite-env.d.ts │ │ │ │ │ └── tsconfig.json │ │ │ └── rules │ │ │ │ ├── AGENTS.md │ │ │ │ ├── cursor-rules.md │ │ │ │ └── windsurf-rules.md │ │ ├── tsconfig.json │ │ └── tsup.config.ts │ ├── mcp │ │ ├── .env.example │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── crypto.ts │ │ │ ├── db │ │ │ │ ├── instant.perms.ts │ │ │ │ └── instant.schema.ts │ │ │ ├── index.html.ts │ │ │ ├── index.ts │ │ │ ├── oauth-service-provider.ts │ │ │ ├── schema.ts │ │ │ └── version.ts │ │ ├── tsconfig.dev.json │ │ └── tsconfig.json │ ├── platform │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── src │ │ │ │ ├── migrations.test.ts │ │ │ │ ├── perms.test.ts │ │ │ │ ├── schema.test.ts │ │ │ │ └── typescript-schema.test.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── ProgressPromise.ts │ │ │ ├── api.ts │ │ │ ├── crypto.ts │ │ │ ├── index.ts │ │ │ ├── migrationUtils.ts │ │ │ ├── migrations.ts │ │ │ ├── oauth.ts │ │ │ ├── oauthCommon.ts │ │ │ ├── perms.ts │ │ │ ├── relationships.ts │ │ │ ├── schema.ts │ │ │ ├── serverOAuth.ts │ │ │ ├── typescript-schema.ts │ │ │ ├── util.ts │ │ │ └── version.ts │ │ ├── tsconfig.dev.json │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── react-common │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── InstantReactAbstractDatabase.tsx │ │ │ ├── InstantReactRoom.ts │ │ │ ├── index.ts │ │ │ ├── useQuery.ts │ │ │ ├── useTimeout.ts │ │ │ └── version.ts │ │ ├── tsconfig.cjs.dev.json │ │ ├── tsconfig.dev.json │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── react-native │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── EventSourceImpl.ts │ │ │ ├── EventSourceShim.ts │ │ │ ├── NetworkListener.js │ │ │ ├── Storage.js │ │ │ ├── Storage.native.ts │ │ │ ├── __types__ │ │ │ │ ├── typeUtils.ts │ │ │ │ └── typesTests.ts │ │ │ ├── cli.ts │ │ │ ├── index.ts │ │ │ └── version.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.module.json │ │ └── tsconfig.test.json │ ├── react │ │ ├── .npmignore │ │ ├── README.md │ │ ├── __example__ │ │ │ ├── standalone.esm.html │ │ │ └── standalone.umd.html │ │ ├── package.json │ │ ├── src │ │ │ ├── Cursors.tsx │ │ │ ├── InstantReactWebDatabase.ts │ │ │ ├── __types__ │ │ │ │ ├── typeUtils.ts │ │ │ │ └── typesTests.ts │ │ │ ├── index.ts │ │ │ ├── init.ts │ │ │ └── version.ts │ │ ├── tsconfig.dev.json │ │ ├── tsconfig.json │ │ ├── tsconfig.test.json │ │ └── vite.config.ts │ └── version │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── index.ts │ │ └── version.ts │ │ ├── tsconfig.cjs.dev.json │ │ ├── tsconfig.dev.json │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.config.js ├── sandbox │ ├── admin-sdk-express │ │ ├── .env.example │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── circle_blue.jpg │ │ │ ├── index.ts │ │ │ └── with-schema.ts │ ├── cli-nodejs │ │ ├── .env.example │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── db │ │ │ │ ├── instant.perms.ts │ │ │ │ └── instant.schema.ts │ │ └── tsconfig.json │ ├── react-native-expo │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app.json │ │ ├── app │ │ │ ├── _layout.tsx │ │ │ ├── config.ts │ │ │ ├── index.tsx │ │ │ └── play │ │ │ │ ├── auth-hooks.tsx │ │ │ │ ├── authhello.tsx │ │ │ │ ├── colors-schema.tsx │ │ │ │ ├── colors.tsx │ │ │ │ ├── ephemeral-demo.tsx │ │ │ │ └── expo-auth-session.tsx │ │ ├── assets │ │ │ ├── adaptive-icon.png │ │ │ ├── favicon.png │ │ │ ├── icon.png │ │ │ └── splash.png │ │ ├── babel.config.js │ │ ├── components │ │ │ └── EphemeralAppPage.tsx │ │ ├── instant.perms.ts │ │ ├── instant.schema.ts │ │ ├── metro.config.js │ │ ├── nativewind-env.d.ts │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── tailwind.config.js │ │ └── tsconfig.json │ ├── react-nextjs │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ │ ├── layout.tsx │ │ │ └── play │ │ │ │ ├── app-router-login │ │ │ │ └── page.tsx │ │ │ │ ├── check-admin-cache │ │ │ │ └── page.tsx │ │ │ │ ├── large-query-perf │ │ │ │ └── page.tsx │ │ │ │ └── route-hydration │ │ │ │ └── [[...slug]] │ │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── EphemeralAppPage.tsx │ │ │ └── Login.jsx │ │ ├── config.ts │ │ ├── imgs │ │ │ ├── circle_blue.jpg │ │ │ ├── circle_green.jpg │ │ │ ├── circle_red.jpg │ │ │ ├── square_blue.jpg │ │ │ ├── square_green.jpg │ │ │ ├── square_red.jpg │ │ │ ├── triangle_blue.jpg │ │ │ ├── triangle_green.jpg │ │ │ └── triangle_red.jpg │ │ ├── lib │ │ │ ├── files.ts │ │ │ └── useIsHydrated.tsx │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ │ ├── _app.tsx │ │ │ ├── bugs │ │ │ │ ├── cascade-delete.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── infite-transact.tsx │ │ │ │ ├── initial-presence.tsx │ │ │ │ ├── order-flicker.tsx │ │ │ │ └── reactivity-loss.tsx │ │ │ ├── index.tsx │ │ │ ├── patterns │ │ │ │ └── split-attributes.tsx │ │ │ ├── platform │ │ │ │ └── oauth-landing.tsx │ │ │ └── play │ │ │ │ ├── admin-sdk.tsx │ │ │ │ ├── authhello.tsx │ │ │ │ ├── authsync.tsx │ │ │ │ ├── avatar.tsx │ │ │ │ ├── checkins.tsx │ │ │ │ ├── clerk.tsx │ │ │ │ ├── color.tsx │ │ │ │ ├── connect-status.tsx │ │ │ │ ├── convert.tsx │ │ │ │ ├── cursors.tsx │ │ │ │ ├── customauth.tsx │ │ │ │ ├── date-conversion.tsx │ │ │ │ ├── dev-devtool.tsx │ │ │ │ ├── editable-system-namespaces.tsx │ │ │ │ ├── ephemeral-counts.tsx │ │ │ │ ├── ephemeral-demo.tsx │ │ │ │ ├── ephemeral.tsx │ │ │ │ ├── fields.tsx │ │ │ │ ├── firebase.tsx │ │ │ │ ├── flicker.tsx │ │ │ │ ├── gated-auth.tsx │ │ │ │ ├── googleloginbutton.tsx │ │ │ │ ├── guest-transfer.tsx │ │ │ │ ├── guest.tsx │ │ │ │ ├── hazelcast-broadcast.tsx │ │ │ │ ├── hazelcast.tsx │ │ │ │ ├── hello-world-blank.tsx │ │ │ │ ├── join-room-set-presence-core.tsx │ │ │ │ ├── join-room-set-presence.tsx │ │ │ │ ├── linkunlink.tsx │ │ │ │ ├── linkunlink_ruleparams.tsx │ │ │ │ ├── missing-attrs.tsx │ │ │ │ ├── nested-limit.tsx │ │ │ │ ├── notandnil.tsx │ │ │ │ ├── oauthlogin.tsx │ │ │ │ ├── operators.tsx │ │ │ │ ├── optional-admin-token.tsx │ │ │ │ ├── paginated-messages.tsx │ │ │ │ ├── pagination.tsx │ │ │ │ ├── patch.tsx │ │ │ │ ├── pending-transactions.tsx │ │ │ │ ├── platform-sdk-demo.tsx │ │ │ │ ├── presence-arrays.tsx │ │ │ │ ├── presence-callback-tracking.tsx │ │ │ │ ├── query-cache-test.tsx │ │ │ │ ├── query-like.tsx │ │ │ │ ├── query-once-toggle.tsx │ │ │ │ ├── query-once.tsx │ │ │ │ ├── query-updates.tsx │ │ │ │ ├── refresh-batch.tsx │ │ │ │ ├── ruleParams.tsx │ │ │ │ ├── save-undefined.tsx │ │ │ │ ├── schema-hot-reloading.tsx │ │ │ │ ├── sign-in-with-apple.tsx │ │ │ │ ├── soft-delete-test.tsx │ │ │ │ ├── stickers.tsx │ │ │ │ ├── storage-v2.tsx │ │ │ │ ├── storage.tsx │ │ │ │ ├── stress.tsx │ │ │ │ ├── strong-todos.tsx │ │ │ │ ├── sync-table.tsx │ │ │ │ ├── todo.jsx │ │ │ │ ├── topic-effect-stale.tsx │ │ │ │ ├── typed-presence.tsx │ │ │ │ └── use-query.tsx │ │ ├── postcss.config.js │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── vercel.svg │ │ ├── styles │ │ │ └── globals.css │ │ ├── tailwind.config.js │ │ └── tsconfig.json │ ├── strong-init-vite │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── instant.perms.ts │ │ ├── instant.schema.ts │ │ ├── instant.schema.v2.ts │ │ ├── package.json │ │ ├── public │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ ├── typescript_branded.tsx │ │ │ ├── typescript_test_abstract.tsx │ │ │ ├── typescript_tests_backwards_compat_date.tsx │ │ │ ├── typescript_tests_experimental.tsx │ │ │ ├── typescript_tests_experimental_v2.tsx │ │ │ ├── typescript_tests_experimental_v2_no_schema.tsx │ │ │ ├── typescript_tests_normal.tsx │ │ │ ├── typescript_tests_normal_as_experimental.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── task-tracker │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config.ts │ │ ├── instant-rules.md │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── postcss.config.mjs │ │ ├── public │ │ │ ├── favicon.svg │ │ │ ├── file.svg │ │ │ ├── globe.svg │ │ │ ├── next.svg │ │ │ ├── vercel.svg │ │ │ └── window.svg │ │ ├── src │ │ │ ├── app │ │ │ │ ├── favicon.ico │ │ │ │ ├── globals.css │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── instant.perms.ts │ │ │ ├── instant.schema.ts │ │ │ └── lib │ │ │ │ └── db.ts │ │ └── tsconfig.json │ ├── vanilla-js-nuxt │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app.vue │ │ ├── nuxt.config.ts │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ ├── server │ │ │ ├── api │ │ │ │ └── createId.ts │ │ │ └── tsconfig.json │ │ └── tsconfig.json │ └── vanilla-js-vite │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── schema.html │ │ ├── src │ │ ├── main.ts │ │ ├── schema.ts │ │ ├── style.css │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── scripts │ ├── fixImports.mjs │ └── publish_packages.clj ├── tsconfig.base.json ├── turbo.json ├── version.md └── www │ ├── .env.example │ ├── .gitignore │ ├── .prettierignore │ ├── _emails │ ├── html │ │ ├── apr2025.html │ │ ├── aug2025.html │ │ ├── dec2024.html │ │ ├── feb2025.html │ │ ├── jul2025.html │ │ ├── mar2025.html │ │ ├── nov2024.html │ │ ├── oct2024.html │ │ ├── oct2025.html │ │ ├── sep2025.html │ │ └── welcome_feb_2025.html │ ├── markdown │ │ ├── apr2025.md │ │ ├── aug2025.md │ │ ├── dec2024.md │ │ ├── feb2025.md │ │ ├── jul2025.md │ │ ├── mar2025.md │ │ ├── nov2024.md │ │ ├── oct2024.md │ │ ├── oct2025.md │ │ ├── sep2025.md │ │ └── welcome_feb_2025.md │ ├── replace-images │ │ ├── index.mjs │ │ └── package.json │ └── txt │ │ ├── apr2025.txt │ │ ├── aug2025.txt │ │ ├── dec2024.txt │ │ ├── feb2025.txt │ │ ├── jul2025.txt │ │ ├── mar2025.txt │ │ ├── nov2024.txt │ │ ├── oct2024.txt │ │ ├── oct2025.txt │ │ ├── sep2025.txt │ │ └── welcome_feb_2025.txt │ ├── _examples │ ├── chat.md │ ├── microblog.md │ └── todos.md │ ├── _posts │ ├── agents.md │ ├── agents_building_counterstrike.md │ ├── conj.md │ ├── count_min_sketch.md │ ├── datalogjs.md │ ├── db_browser.md │ ├── founding_firebase.md │ ├── gpt_5_vs_opus_4.md │ ├── heroui.md │ ├── mirando.md │ ├── next_firebase.md │ ├── pg_upgrade.md │ ├── seed.md │ └── sync_future.md │ ├── components │ ├── AnimatedCounter.tsx │ ├── DemoIframe.tsx │ ├── Dev.tsx │ ├── DocsPage.jsx │ ├── DropdownMenu.tsx │ ├── ErrorBoundary.tsx │ ├── Lightbox.tsx │ ├── PostHogIdentify.tsx │ ├── admin │ │ ├── AdminPage.tsx │ │ └── AdminRoot.jsx │ ├── clientOnlyPage.tsx │ ├── dash │ │ ├── AppAuth.tsx │ │ ├── Auth.tsx │ │ ├── AuthorizedOAuthAppsScreen.tsx │ │ ├── BackToAppsButton.tsx │ │ ├── Billing.tsx │ │ ├── CLILoginDialog.tsx │ │ ├── DarkModeToggle.tsx │ │ ├── Invites.tsx │ │ ├── MainDashLayout.tsx │ │ ├── OAuthApps.tsx │ │ ├── Onboarding.tsx │ │ ├── Orgs.tsx │ │ ├── Perms.tsx │ │ ├── PersonalAccessTokensScreen.tsx │ │ ├── ProfilePanel.tsx │ │ ├── Sandbox.tsx │ │ ├── Schema.tsx │ │ ├── TopBar.tsx │ │ ├── auth │ │ │ ├── Apple.tsx │ │ │ ├── Clerk.tsx │ │ │ ├── Email.tsx │ │ │ ├── Firebase.tsx │ │ │ ├── GitHub.tsx │ │ │ ├── Google.tsx │ │ │ ├── LinkedIn.tsx │ │ │ ├── Origins.tsx │ │ │ └── shared.tsx │ │ ├── explorer │ │ │ ├── EditNamespaceDialog.tsx │ │ │ ├── EditRowDialog.tsx │ │ │ ├── ExpandableDeletedAttr.tsx │ │ │ ├── Explorer.tsx │ │ │ ├── QueryInspector.tsx │ │ │ ├── RecentlyDeleted.tsx │ │ │ ├── TableComponents.tsx │ │ │ └── ViewSettings.tsx │ │ ├── org-management │ │ │ ├── CreateOrgModal.tsx │ │ │ ├── InviteToOrgDialog.tsx │ │ │ ├── MemberMenu.tsx │ │ │ ├── Members.tsx │ │ │ ├── OrgBilling.tsx │ │ │ ├── OrgManagePage.tsx │ │ │ └── RenameOrg.tsx │ │ └── shared.tsx │ ├── docs │ │ ├── Ansi.jsx │ │ ├── Button.jsx │ │ ├── Callout.jsx │ │ ├── CopyPromptBox.tsx │ │ ├── Fence.jsx │ │ ├── Icon.jsx │ │ ├── Layout.jsx │ │ ├── Logo.jsx │ │ ├── MobileNavigation.jsx │ │ ├── NavButton.jsx │ │ ├── Navigation.jsx │ │ ├── Prose.jsx │ │ ├── RatingBox.tsx │ │ ├── Search.jsx │ │ ├── TabbedSingle.jsx │ │ ├── ThemeSelector.jsx │ │ └── icons │ │ │ ├── InstallationIcon.jsx │ │ │ ├── LightbulbIcon.jsx │ │ │ ├── PluginsIcon.jsx │ │ │ ├── PresetsIcon.jsx │ │ │ ├── ThemingIcon.jsx │ │ │ └── WarningIcon.jsx │ ├── essays │ │ ├── agents_essay_demo_section.tsx │ │ └── sketch │ │ │ ├── BucketComponents.tsx │ │ │ ├── Estimator.tsx │ │ │ ├── SketchDemo.tsx │ │ │ ├── allExactCounts.json │ │ │ ├── exactCounts.ts │ │ │ └── sketch.ts │ ├── icons │ │ ├── NetlifyIcon.tsx │ │ ├── UserSettingsIcon.tsx │ │ └── VercelIcon.tsx │ ├── intern │ │ └── docs-feedback │ │ │ ├── admin-ratings-section.tsx │ │ │ ├── analytics-dashboard.tsx │ │ │ ├── auth.tsx │ │ │ ├── feedback-pages.tsx │ │ │ ├── metrics-overview.tsx │ │ │ └── page-drilldown.tsx │ ├── marketingUi.tsx │ ├── resizable.tsx │ ├── select.tsx │ ├── switch.tsx │ └── ui.tsx │ ├── data │ ├── docsNavigation.js │ ├── tutorial-examples.ts │ ├── tutorial-snippets │ │ ├── todos-add-react.tsx │ │ ├── todos-update-delete-instant.tsx │ │ └── todos-update-delete-react.tsx │ └── tutorialMonacoTheme.json │ ├── lib │ ├── SelectedAppContext.ts │ ├── app.tsx │ ├── auth.ts │ ├── config.ts │ ├── contexts.ts │ ├── createInitializedContext.tsx │ ├── emails.js │ ├── ephemeral.tsx │ ├── errors.ts │ ├── examples │ │ ├── data.ts │ │ └── server.ts │ ├── fetch.ts │ ├── flags.ts │ ├── footnotes.ts │ ├── format.ts │ ├── hooks │ │ ├── explorer.tsx │ │ ├── useAttrNotes.ts │ │ ├── useClickOutside.tsx │ │ ├── useColumnVisibility.ts │ │ ├── useCurrentDate.tsx │ │ ├── useDashFetch.tsx │ │ ├── useEditBlobConstraints.ts │ │ ├── useFlag.tsx │ │ ├── useForm.tsx │ │ ├── useIsHydrated.tsx │ │ ├── useIsOverflow.tsx │ │ ├── useLocalStorage.tsx │ │ ├── useMonacoJsonSchema.tsx │ │ ├── useOrgPaid.tsx │ │ ├── useSavedQueryState.tsx │ │ ├── useTicketSystem.tsx │ │ ├── useTotalSessionsCount.tsx │ │ └── useWorkspace.tsx │ ├── indexingJobs.ts │ ├── intern │ │ ├── docs-feedback │ │ │ ├── README.md │ │ │ ├── analytics.ts │ │ │ ├── db.ts │ │ │ ├── instant.perms.ts │ │ │ └── instant.schema.ts │ │ └── instant-rules.md │ ├── locallySavedApp.tsx │ ├── makeAttrComparator.tsx │ ├── markdoc.ts │ ├── monaco.ts │ ├── muxVideos.ts │ ├── og.ts │ ├── orgRoles.ts │ ├── parsePermsJSON.ts │ ├── patchBrowserEvents.ts │ ├── permsJsonSchema.tsx │ ├── posts.ts │ ├── relationships.ts │ ├── renames.ts │ ├── schema.tsx │ ├── swrCache.ts │ ├── tableWidthSize.ts │ ├── toast.js │ ├── types.ts │ ├── uptimeAPI.tsx │ ├── url.tsx │ └── videos.ts │ ├── markdoc │ ├── nodes.js │ └── tags.js │ ├── next-env.d.ts │ ├── next-sitemap.config.js │ ├── next.config.js │ ├── package.json │ ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _devtool │ │ └── index.tsx │ ├── _document.js │ ├── api │ │ └── og.tsx │ ├── dash │ │ ├── index.tsx │ │ ├── new.tsx │ │ ├── oauth │ │ │ └── callback.tsx │ │ ├── onboarding.tsx │ │ ├── org.tsx │ │ └── user-settings.tsx │ ├── debug-uri │ │ └── [trace-id] │ │ │ └── [span-id].tsx │ ├── dino-habits │ │ └── index.tsx │ ├── docs │ │ ├── auth.md │ │ ├── auth │ │ │ ├── apple.md │ │ │ ├── clerk.md │ │ │ ├── firebase.md │ │ │ ├── github-oauth.md │ │ │ ├── google-oauth.md │ │ │ ├── guest-auth.md │ │ │ ├── linkedin-oauth.md │ │ │ ├── magic-codes.md │ │ │ └── platform-oauth.md │ │ ├── backend.md │ │ ├── cli.md │ │ ├── common-mistakes.md │ │ ├── create-instant-app.md │ │ ├── devtool.md │ │ ├── emails.md │ │ ├── index.md │ │ ├── init.md │ │ ├── instaml.md │ │ ├── instaql.md │ │ ├── modeling-data.md │ │ ├── patterns.md │ │ ├── permissions.md │ │ ├── presence-and-topics.md │ │ ├── start-rn.md │ │ ├── start-vanilla.md │ │ ├── storage.md │ │ ├── teams.md │ │ ├── users.md │ │ ├── using-llms.md │ │ └── workflow.md │ ├── essays │ │ ├── [slug].tsx │ │ └── index.tsx │ ├── examples │ │ ├── [slug].tsx │ │ └── index.tsx │ ├── hiring │ │ ├── backend-engineer.tsx │ │ └── index.tsx │ ├── index.tsx │ ├── intern │ │ ├── docs-feedback.tsx │ │ ├── emails │ │ │ ├── [slug].tsx │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── investor_updates.tsx │ │ ├── overview.tsx │ │ ├── paid.tsx │ │ ├── signup.tsx │ │ ├── storage.tsx │ │ └── top.jsx │ ├── labs │ │ ├── oauth_apps_demo.tsx │ │ └── platform_demo.tsx │ ├── platform │ │ └── oauth │ │ │ └── start.tsx │ ├── pricing.tsx │ ├── privacy.tsx │ ├── recipes.tsx │ ├── recipes │ │ ├── 1-todos.tsx │ │ ├── 2-auth.tsx │ │ ├── 3-cursors.tsx │ │ ├── 4-custom-cursors.tsx │ │ ├── 5-reactions.tsx │ │ ├── 6-typing-indicator.tsx │ │ ├── 7-avatar-stack.tsx │ │ └── 8-merge-tile-game.tsx │ ├── resources │ │ └── ui.tsx │ ├── status.tsx │ ├── terms.tsx │ ├── tutorial-examples │ │ ├── 1-todos-add.tsx │ │ ├── 2-todos-edit.tsx │ │ └── 3-todos-attributes.tsx │ └── tutorial.tsx │ ├── postcss.config.js │ ├── public │ ├── fonts │ │ ├── BerkeleyMono-Bold.woff │ │ ├── BerkeleyMono-Bold.woff2 │ │ ├── BerkeleyMono-BoldItalic.woff │ │ ├── BerkeleyMono-BoldItalic.woff2 │ │ ├── BerkeleyMono-Italic.woff │ │ ├── BerkeleyMono-Italic.woff2 │ │ ├── BerkeleyMono-Regular.woff │ │ ├── BerkeleyMono-Regular.woff2 │ │ ├── BerkeleyMonoVariable-Italic.woff2 │ │ └── BerkeleyMonoVariable-Regular.woff2 │ ├── img │ │ ├── apple_logo_black.svg │ │ ├── clerk_logo_black.svg │ │ ├── docs │ │ │ ├── clerk-token-form.png │ │ │ ├── devtool-explorer.png │ │ │ ├── devtool-pointer.jpg │ │ │ ├── devtool-sandbox.png │ │ │ ├── instaml-due-date.png │ │ │ ├── instaql-data-intellisense.png │ │ │ ├── instaql-todos-goals-autocomplete.png │ │ │ ├── modeling-data-rename-attr.png │ │ │ ├── presence-intellisense.png │ │ │ └── rn-web-redirect-origins.png │ │ ├── emails │ │ │ ├── apr2025 │ │ │ │ ├── s_A8BCE826E2D24A59DDDF978FF919F212AA1BA53C7F2773B4B244E2F70CDD846A_1746560157623_image.png │ │ │ │ ├── s_A8BCE826E2D24A59DDDF978FF919F212AA1BA53C7F2773B4B244E2F70CDD846A_1746560354137_image.png │ │ │ │ ├── s_A8BCE826E2D24A59DDDF978FF919F212AA1BA53C7F2773B4B244E2F70CDD846A_1746564212953_better-oauth.png │ │ │ │ ├── s_D5033FA557FFFE14A26ED3674BAE74F345ABE2D9051159D5B3634332C24375B3_1746466781941_CleanShot+2025-05-05+at+10.39.092x.png │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ │ ├── aug2025 │ │ │ │ ├── s_1792D73BA27A4373955C0EF2F9F74DE0BD9019C65C1CBCC322C4DF65A41CF048_1757625254421_CleanShot+2025-09-11+at+14.14.002x.png │ │ │ │ ├── s_1792D73BA27A4373955C0EF2F9F74DE0BD9019C65C1CBCC322C4DF65A41CF048_1757625297956_CleanShot+2025-09-11+at+14.14.442x.png │ │ │ │ ├── s_1792D73BA27A4373955C0EF2F9F74DE0BD9019C65C1CBCC322C4DF65A41CF048_1757627630081_CleanShot+2025-09-11+at+14.53.372x.png │ │ │ │ ├── s_1792D73BA27A4373955C0EF2F9F74DE0BD9019C65C1CBCC322C4DF65A41CF048_1757627747678_CleanShot+2025-09-11+at+14.55.302x.png │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ │ ├── dec2024 │ │ │ │ ├── s_A91D86B3D6F04CFEA63084B83C6E816ADC42104A6822CC9C6258E9D560CDF5F3_1735626509971_image.png │ │ │ │ ├── s_A91D86B3D6F04CFEA63084B83C6E816ADC42104A6822CC9C6258E9D560CDF5F3_1735626771452_image.png │ │ │ │ ├── s_A91D86B3D6F04CFEA63084B83C6E816ADC42104A6822CC9C6258E9D560CDF5F3_1735627523303_image.png │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ │ ├── feb2025 │ │ │ │ ├── s_513F5FE60B9BB3BB9CCD1CA54DF394804C0DE8F72ED1A4C65882EB8C31D175AE_1740786465619_add-links.png │ │ │ │ ├── s_513F5FE60B9BB3BB9CCD1CA54DF394804C0DE8F72ED1A4C65882EB8C31D175AE_1740787113300_image.png │ │ │ │ ├── s_513F5FE60B9BB3BB9CCD1CA54DF394804C0DE8F72ED1A4C65882EB8C31D175AE_1741040505548_image.png │ │ │ │ ├── s_513F5FE60B9BB3BB9CCD1CA54DF394804C0DE8F72ED1A4C65882EB8C31D175AE_1741044653859_cascade.png │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ │ ├── jul2025 │ │ │ │ ├── s_B780C84BD85687D93B6CC8B14B02AFAD6BC12F2510D1FF046702911B9D014207_1755034951500_image.png │ │ │ │ ├── s_B780C84BD85687D93B6CC8B14B02AFAD6BC12F2510D1FF046702911B9D014207_1755036502869_image.png │ │ │ │ ├── s_B780C84BD85687D93B6CC8B14B02AFAD6BC12F2510D1FF046702911B9D014207_1755043210572_CleanShot+2025-08-12+at+16.59.562x.png │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ │ ├── mar2025 │ │ │ │ ├── s_7B280E1A3BA8AB078D69579372DCD7F97D2F02F6D857FBABC05C42A70756AC62_1743727283805_image.png │ │ │ │ ├── s_7B280E1A3BA8AB078D69579372DCD7F97D2F02F6D857FBABC05C42A70756AC62_1743728983960_CleanShot+2025-04-03+at+18.09.332x.png │ │ │ │ ├── s_7B280E1A3BA8AB078D69579372DCD7F97D2F02F6D857FBABC05C42A70756AC62_1743788878099_image.png │ │ │ │ ├── s_7B280E1A3BA8AB078D69579372DCD7F97D2F02F6D857FBABC05C42A70756AC62_1744060894895_instant_hero.jpeg │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ │ ├── nov2024 │ │ │ │ ├── s_B097BA2FA68FBDBEF71F30F95558A3D23729AED0A557430F53FE49A682293BBC_1733449686289_image.png │ │ │ │ ├── s_B097BA2FA68FBDBEF71F30F95558A3D23729AED0A557430F53FE49A682293BBC_1733450241867_image.png │ │ │ │ ├── s_B097BA2FA68FBDBEF71F30F95558A3D23729AED0A557430F53FE49A682293BBC_1733450981289_image.png │ │ │ │ ├── s_B097BA2FA68FBDBEF71F30F95558A3D23729AED0A557430F53FE49A682293BBC_1733451107349_image.png │ │ │ │ ├── s_B097BA2FA68FBDBEF71F30F95558A3D23729AED0A557430F53FE49A682293BBC_1733451831476_image.png │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ │ ├── oct2024 │ │ │ │ ├── s_B8A06116D3803694CDA0C13F9F97E92EA0220D4E377317F0F00D7831E3E41E9E_1727988124731_image.png │ │ │ │ ├── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1729122912083_image.png │ │ │ │ ├── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1729123513053_image.png │ │ │ │ ├── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ │ │ ├── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730244001267_image.png │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730244149277_users_table.png │ │ │ ├── oct2025 │ │ │ │ ├── s_6E082F007AE9AD0868C28574407BB3B75F0499E083CAED1B5165D941BDFD62C8_1762799995355_frame-1-bordered.png │ │ │ │ ├── s_6E082F007AE9AD0868C28574407BB3B75F0499E083CAED1B5165D941BDFD62C8_1762800303125_frame-1__1_-bordered.png │ │ │ │ ├── s_6E082F007AE9AD0868C28574407BB3B75F0499E083CAED1B5165D941BDFD62C8_1762802439157_CleanShot+2025-11-10+at+11.20.282x.png │ │ │ │ ├── s_6E082F007AE9AD0868C28574407BB3B75F0499E083CAED1B5165D941BDFD62C8_1762820177786_rename-cli.png │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ │ └── sep2025 │ │ │ │ ├── s_516FD273FDB50BD615AD5A382B86335376BAD9A747A673BBD127C73250F8ED24_1759871099185_image.png │ │ │ │ ├── s_516FD273FDB50BD615AD5A382B86335376BAD9A747A673BBD127C73250F8ED24_1759873402530_CleanShot+2025-10-07+at+14.43.122x.png │ │ │ │ ├── s_516FD273FDB50BD615AD5A382B86335376BAD9A747A673BBD127C73250F8ED24_1759873613083_CleanShot+2025-10-07+at+14.46.462x.png │ │ │ │ ├── s_516FD273FDB50BD615AD5A382B86335376BAD9A747A673BBD127C73250F8ED24_1759873656864_CleanShot+2025-10-07+at+14.47.262x.png │ │ │ │ └── s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png │ │ ├── firebase_auth.svg │ │ ├── github.svg │ │ ├── google_g.svg │ │ ├── hiring │ │ │ ├── backend.png │ │ │ ├── explorer.png │ │ │ ├── sandbox.png │ │ │ └── sync_engine.png │ │ ├── icon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-167x167.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── favicon-128x128.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-196x196.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.svg │ │ │ ├── logo-512.svg │ │ │ ├── logo_with_text.svg │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ └── mstile-70x70.png │ │ ├── linkedin.svg │ │ ├── og_preview.png │ │ ├── peeps │ │ │ ├── aj_nandi.jpeg │ │ │ ├── alex.png │ │ │ ├── hunter.jpeg │ │ │ ├── james.png │ │ │ ├── nacho.jpg │ │ │ └── sean.png │ │ ├── showcase │ │ │ ├── blog_preview.png │ │ │ ├── chat_preview.png │ │ │ └── todos_preview.png │ │ └── yc_logo.png │ ├── marketing │ │ └── discord-icon.svg │ ├── posts │ │ ├── agents │ │ │ ├── big_vs_small.png │ │ │ ├── exposed_data.png │ │ │ ├── getting_specific.png │ │ │ ├── good_abstractions.png │ │ │ ├── hero.png │ │ │ ├── instant_arch.png │ │ │ ├── max_efficient.png │ │ │ ├── og_image.png │ │ │ └── sync_engine.png │ │ ├── count_min_sketch │ │ │ ├── compressedExactCounts.png │ │ │ ├── compressedSketch.png │ │ │ └── wodehouse-full.txt │ │ ├── counter_strike │ │ │ ├── enemy_claude.png │ │ │ ├── enemy_claude2.png │ │ │ ├── enemy_codex.png │ │ │ ├── enemy_gemini.png │ │ │ ├── map_claude.png │ │ │ ├── map_codex.png │ │ │ ├── map_gemini.png │ │ │ ├── maps_gemini.png │ │ │ ├── recoil_claude.gif │ │ │ ├── recoil_codex.gif │ │ │ ├── recoil_gemini.gif │ │ │ ├── sound_codex.mp4 │ │ │ ├── ui_claude.png │ │ │ ├── ui_codex.png │ │ │ └── ui_gemini.png │ │ ├── heroui │ │ │ ├── junior.png │ │ │ └── stars.png │ │ ├── mirando │ │ │ └── javier_and_ignacio.jpg │ │ └── pg_upgrade │ │ │ ├── blue_green.png │ │ │ ├── clone_upgrade_replicate.png │ │ │ ├── create_replicate.png │ │ │ ├── going_manual.png │ │ │ ├── in_place.png │ │ │ ├── no_downtime.png │ │ │ ├── switch_subs.png │ │ │ ├── switch_writes.png │ │ │ └── the_system.png │ └── readmes │ │ ├── architecture.svg │ │ ├── compression.svg │ │ ├── logo_with_text_bg_white.svg │ │ ├── logo_with_text_dark_mode.svg │ │ └── logo_with_text_light_mode.svg │ ├── recipes.ts │ ├── scripts │ ├── gen-llm-rules.ts │ ├── gen-llms-txt.ts │ ├── gen-md-docs.ts │ ├── gen-rss.ts │ └── index-docs.ts │ ├── styles │ ├── docs │ │ ├── prism.css │ │ └── tailwind.css │ ├── globals.css │ └── status.module.css │ ├── tailwind.config.js │ └── tsconfig.json ├── server ├── .clj-kondo │ ├── .gitignore │ ├── ci-config.edn │ ├── config.edn │ ├── hooks │ │ ├── defsql.clj │ │ ├── with_indexing_job_queue.clj │ │ └── with_prod_conn.clj │ └── imports │ │ ├── babashka │ │ └── sci │ │ │ ├── config.edn │ │ │ └── sci │ │ │ └── core.clj │ │ ├── com.github.seancorfield │ │ └── next.jdbc │ │ │ ├── config.edn │ │ │ └── hooks │ │ │ └── com │ │ │ └── github │ │ │ └── seancorfield │ │ │ └── next_jdbc.clj_kondo │ │ ├── com.github.steffan-westcott │ │ └── clj-otel-api │ │ │ └── config.edn │ │ ├── hiccup │ │ └── hiccup │ │ │ ├── config.edn │ │ │ └── hiccup │ │ │ └── hooks.clj │ │ ├── http-kit │ │ └── http-kit │ │ │ ├── config.edn │ │ │ └── httpkit │ │ │ └── with_channel.clj │ │ ├── instaparse │ │ └── config.edn │ │ ├── io.github.tonsky │ │ └── clojure-plus │ │ │ ├── config.edn │ │ │ └── hooks │ │ │ └── core.clj │ │ ├── rewrite-clj │ │ └── rewrite-clj │ │ │ └── config.edn │ │ └── taoensso │ │ └── encore │ │ ├── config.edn │ │ └── taoensso │ │ └── encore.clj ├── .ebextensions │ ├── resources.config │ └── sysctl.config ├── .elasticbeanstalk │ └── config.yml ├── .gitignore ├── .lsp │ └── config.edn ├── .platform │ ├── confighooks │ │ ├── postdeploy │ │ │ └── cloudwatch.sh │ │ └── prebuild │ │ │ └── prebuild.sh │ └── hooks │ │ ├── postdeploy │ │ └── cloudwatch.sh │ │ └── prebuild │ │ └── prebuild.sh ├── Caddyfile.dev ├── Dockerfile ├── Dockerfile-dev ├── Makefile ├── README.md ├── build.clj ├── ci_trigger.txt ├── cljfmt.edn ├── deps.edn ├── dev-postgres │ ├── Dockerfile │ ├── Makefile │ └── README.md ├── dev-resources │ └── hooks │ │ └── pre-commit ├── dev │ ├── data_readers.clj │ └── user.clj ├── docker-compose-dev.yml ├── docker-compose.yml ├── flags-config │ ├── .env │ ├── README.md │ ├── instant.perms.ts │ ├── instant.schema.ts │ ├── package.json │ └── pnpm-lock.yaml ├── refinery │ ├── .ebextensions │ │ └── resources.config │ ├── config-redis.yaml │ ├── config.yaml │ ├── docker-compose.yml │ ├── refinery.env │ └── rules.yaml ├── resources │ ├── config │ │ ├── dev.edn │ │ ├── prod.edn │ │ ├── staging.edn │ │ └── test.edn │ ├── data_readers.clj │ ├── logback.xml │ ├── migrations │ │ ├── 01_bootstrap.down.sql │ │ ├── 01_bootstrap.up.sql │ │ ├── 02_add_grabs.down.sql │ │ ├── 02_add_grabs.up.sql │ │ ├── 03_add_transactions.down.sql │ │ ├── 03_add_transactions.up.sql │ │ ├── 04_add_rules.down.sql │ │ ├── 04_add_rules.up.sql │ │ ├── 05_add_app_admin_tokens.down.sql │ │ ├── 05_add_app_admin_tokens.up.sql │ │ ├── 06_fix_ref_constraint_on_triples.down.sql │ │ ├── 06_fix_ref_constraint_on_triples.up.sql │ │ ├── 07_add_profiles.down.sql │ │ ├── 07_add_profiles.up.sql │ │ ├── 08_add_createdAt_for_triples.down.sql │ │ ├── 08_add_createdAt_for_triples.up.sql │ │ ├── 09_add_oauth_login.down.sql │ │ ├── 09_add_oauth_login.up.sql │ │ ├── 10_add_app_oauth_login.down.sql │ │ ├── 10_add_app_oauth_login.up.sql │ │ ├── 11_add_created_at_fields.down.sql │ │ ├── 11_add_created_at_fields.up.sql │ │ ├── 12_add_redirect_to_dev.down.sql │ │ ├── 12_add_redirect_to_dev.up.sql │ │ ├── 13_add_discovery_endpoint.down.sql │ │ ├── 13_add_discovery_endpoint.up.sql │ │ ├── 14_add_apps_created_at_index.down.sql │ │ ├── 14_add_apps_created_at_index.up.sql │ │ ├── 15_pkce.down.sql │ │ ├── 15_pkce.up.sql │ │ ├── 16_add_stripe.down.sql │ │ ├── 16_add_stripe.up.sql │ │ ├── 17_add_teams.down.sql │ │ ├── 17_add_teams.up.sql │ │ ├── 18_add_sent_at_to_invites.down.sql │ │ ├── 18_add_sent_at_to_invites.up.sql │ │ ├── 19_add_app_email_templates.down.sql │ │ ├── 19_add_app_email_templates.up.sql │ │ ├── 20_add_name_to_app_email_templates.down.sql │ │ ├── 20_add_name_to_app_email_templates.up.sql │ │ ├── 21_change_sender_ownership_model.down.sql │ │ ├── 21_change_sender_ownership_model.up.sql │ │ ├── 22_drop_app_id_from_senders.down.sql │ │ ├── 22_drop_app_id_from_senders.up.sql │ │ ├── 23_jsonb_dmerge_and_raise.down.sql │ │ ├── 23_jsonb_dmerge_and_raise.up.sql │ │ ├── 24_deep_merge_null.down.sql │ │ ├── 24_deep_merge_null.up.sql │ │ ├── 25_byop_connection_string.down.sql │ │ ├── 25_byop_connection_string.up.sql │ │ ├── 26_cli_auth.down.sql │ │ ├── 26_cli_auth.up.sql │ │ ├── 27_inferred_type.down.sql │ │ ├── 27_inferred_type.up.sql │ │ ├── 28_config.down.sql │ │ ├── 28_config.up.sql │ │ ├── 29_clerk.down.sql │ │ ├── 29_clerk.up.sql │ │ ├── 30_personal_access_tokens.down.sql │ │ ├── 30_personal_access_tokens.up.sql │ │ ├── 31_attrs_replica_full.down.sql │ │ ├── 31_attrs_replica_full.up.sql │ │ ├── 32_pgcrypto.down.sql │ │ ├── 32_pgcrypto.up.sql │ │ ├── 33_users_in_triples_flag.down.sql │ │ ├── 33_users_in_triples_flag.up.sql │ │ ├── 34_hardcoded_objects.down.sql │ │ ├── 34_hardcoded_objects.up.sql │ │ ├── 35_cascade_delete.down.sql │ │ ├── 35_cascade_delete.up.sql │ │ ├── 36_checked_data_type.down.sql │ │ ├── 36_checked_data_type.up.sql │ │ ├── 37_remove_users_in_triples_flag.down.sql │ │ ├── 37_remove_users_in_triples_flag.up.sql │ │ ├── 38_uniqueing.down.sql │ │ ├── 38_uniqueing.up.sql │ │ ├── 39_fix_extract_boolean.down.sql │ │ ├── 39_fix_extract_boolean.up.sql │ │ ├── 40_checked_indexes.down.sql │ │ ├── 40_checked_indexes.up.sql │ │ ├── 41_primary_keys.down.sql │ │ ├── 41_primary_keys.up.sql │ │ ├── 42_add_transactions_app_id_idx.down.sql │ │ ├── 42_add_transactions_app_id_idx.up.sql │ │ ├── 43_specify_public.down.sql │ │ ├── 43_specify_public.up.sql │ │ ├── 44_add_daily_app_transactions.down.sql │ │ ├── 44_add_daily_app_transactions.up.sql │ │ ├── 45_remove_entity_id_from_indexes.down.sql │ │ ├── 45_remove_entity_id_from_indexes.up.sql │ │ ├── 46_add_created_at_index_to_transactions.down.sql │ │ ├── 46_add_created_at_index_to_transactions.up.sql │ │ ├── 47_add_replica_id_to_daily_metrics.down.sql │ │ ├── 47_add_replica_id_to_daily_metrics.up.sql │ │ ├── 48_add_dap_primary_key.down.sql │ │ ├── 48_add_dap_primary_key.up.sql │ │ ├── 49_add_user_flags.down.sql │ │ ├── 49_add_user_flags.up.sql │ │ ├── 50_add_app_upload_urls.down.sql │ │ ├── 50_add_app_upload_urls.up.sql │ │ ├── 51_add_triples_created_at_index.down.sql │ │ ├── 51_add_triples_created_at_index.up.sql │ │ ├── 52_add_app_files_to_sweep.down.sql │ │ ├── 52_add_app_files_to_sweep.up.sql │ │ ├── 53_change_indexing_of_triple_nulls.down.sql │ │ ├── 53_change_indexing_of_triple_nulls.up.sql │ │ ├── 54_on_delete_reverse.down.sql │ │ ├── 54_on_delete_reverse.up.sql │ │ ├── 55_add_storage_sweeper.down.sql │ │ ├── 55_add_storage_sweeper.up.sql │ │ ├── 56_nulls_first_indexes.down.sql │ │ ├── 56_nulls_first_indexes.up.sql │ │ ├── 57_apps_deletion.down.sql │ │ ├── 57_apps_deletion.up.sql │ │ ├── 58_instant_oauth_provider.down.sql │ │ ├── 58_instant_oauth_provider.up.sql │ │ ├── 59_is_required.down.sql │ │ ├── 59_is_required.up.sql │ │ ├── 60_statistics.down.sql │ │ ├── 60_statistics.up.sql │ │ ├── 61_seed_test_user.down.sql │ │ ├── 61_seed_test_user.up.sql │ │ ├── 62_seed_ephemeral_app_creator.down.sql │ │ ├── 62_seed_ephemeral_app_creator.up.sql │ │ ├── 63_seed_homepage_app.down.sql │ │ ├── 63_seed_homepage_app.up.sql │ │ ├── 64_better_uuid_constraint.down.sql │ │ ├── 64_better_uuid_constraint.up.sql │ │ ├── 65_drop_old_constraint.down.sql │ │ ├── 65_drop_old_constraint.up.sql │ │ ├── 66_indexing_jobs_error_data.down.sql │ │ ├── 66_indexing_jobs_error_data.up.sql │ │ ├── 67_personal_access_token_lookup.down.sql │ │ ├── 67_personal_access_token_lookup.up.sql │ │ ├── 68_attrs_etype_label_schema.down.sql │ │ ├── 68_attrs_etype_label_schema.up.sql │ │ ├── 69_attrs_etype_label_data.down.sql │ │ ├── 69_attrs_etype_label_data.up.sql │ │ ├── 70_improve_file_system_attrs.down.sql │ │ ├── 70_improve_file_system_attrs.up.sql │ │ ├── 71_add_required_file_size.up.sql │ │ ├── 71_required_file_size.down.sql │ │ ├── 72_drop_not_null_from_required.down.sql │ │ ├── 72_drop_not_null_from_required.up.sql │ │ ├── 73_vae_uuids.down.sql │ │ ├── 73_vae_uuids.up.sql │ │ ├── 74_drop_old_vae_eav_indexes.down.sql │ │ ├── 74_drop_old_vae_eav_indexes.up.sql │ │ ├── 75_attr_soft_deletes.down.sql │ │ ├── 75_attr_soft_deletes.up.sql │ │ ├── 76_attr_metadata.down.sql │ │ ├── 76_attr_metadata.up.sql │ │ ├── 77_add_sketch.down.sql │ │ ├── 77_add_sketch.up.sql │ │ ├── 78_add_reverse_bins_to_sketch.down.sql │ │ ├── 78_add_reverse_bins_to_sketch.up.sql │ │ ├── 79_add_orgs.down.sql │ │ ├── 79_add_orgs.up.sql │ │ ├── 80_org-invites.down.sql │ │ ├── 80_org-invites.up.sql │ │ ├── 81_denormalize_subscription.down.sql │ │ ├── 81_denormalize_subscription.up.sql │ │ ├── 82_org_subscriptions.down.sql │ │ ├── 82_org_subscriptions.up.sql │ │ ├── 83_triples_pg_size.down.sql │ │ ├── 83_triples_pg_size.up.sql │ │ ├── 84_index_pg_size_for_migration.down.sql │ │ ├── 84_index_pg_size_for_migration.up.sql │ │ ├── 85_triples_size_trigger.down.sql │ │ ├── 85_triples_size_trigger.up.sql │ │ ├── 86_at_least_one_owner_on_org.down.sql │ │ ├── 86_at_least_one_owner_on_org.up.sql │ │ ├── 87_cleanup_pg_size_migration.down.sql │ │ ├── 87_cleanup_pg_size_migration.up.sql │ │ ├── 88_force_index_lookup_on_triple.down.sql │ │ ├── 88_force_index_lookup_on_triple.up.sql │ │ ├── 89_creator_or_org_on_app.down.sql │ │ ├── 89_creator_or_org_on_app.up.sql │ │ ├── 90_add_e_to_ave_index.down.sql │ │ ├── 90_add_e_to_ave_index.up.sql │ │ ├── 91_drop_ave_index.down.sql │ │ ├── 91_drop_ave_index.up.sql │ │ ├── 92_editable_attrs.down.sql │ │ ├── 92_editable_attrs.up.sql │ │ ├── 93_sync_table.down.sql │ │ ├── 93_sync_table.up.sql │ │ ├── 94_drop_old_transactions_index.down.sql │ │ └── 94_drop_old_transactions_index.up.sql │ ├── sample_triples │ │ ├── movie.json │ │ └── zeneca.json │ └── uri-schemes.edn ├── scripts │ ├── aws_tunnel.sh │ ├── clone_app.sh │ ├── clone_app.sql │ ├── eb_deploy.clj │ ├── export.sh │ ├── export │ │ ├── copy_apps.sql │ │ ├── copy_attrs.sql │ │ ├── copy_idents.sql │ │ ├── copy_rules.sql │ │ └── copy_triples.sql │ ├── install_dev_certs.sh │ ├── jmc_tunnel.sh │ ├── manual_deploy.sh │ ├── prod_connection_string.sh │ ├── prod_ssh.sh │ └── prod_tunnel.sh ├── src │ ├── instant │ │ ├── admin │ │ │ ├── model.clj │ │ │ ├── routes.clj │ │ │ └── transact_queue.clj │ │ ├── aurora_config.clj │ │ ├── auth │ │ │ ├── jwt.clj │ │ │ └── oauth.clj │ │ ├── comment.clj │ │ ├── config.clj │ │ ├── config_edn.clj │ │ ├── core.clj │ │ ├── dash │ │ │ ├── admin.clj │ │ │ ├── ephemeral_app.clj │ │ │ └── routes.clj │ │ ├── data │ │ │ ├── bootstrap.clj │ │ │ ├── constants.clj │ │ │ └── resolvers.clj │ │ ├── db │ │ │ ├── attr_sketch.clj │ │ │ ├── cel.clj │ │ │ ├── dataloader.clj │ │ │ ├── datalog.clj │ │ │ ├── hint_testing.clj │ │ │ ├── indexing_jobs.clj │ │ │ ├── instaql.clj │ │ │ ├── model │ │ │ │ ├── attr.clj │ │ │ │ ├── attr_pat.clj │ │ │ │ ├── entity.clj │ │ │ │ ├── transaction.clj │ │ │ │ ├── triple.clj │ │ │ │ └── triple_cols.clj │ │ │ ├── permissioned_transaction.clj │ │ │ ├── pg_introspect.clj │ │ │ ├── rule_where_testing.clj │ │ │ ├── sync_table.clj │ │ │ └── transaction.clj │ │ ├── discord.clj │ │ ├── fixtures.clj │ │ ├── flags.clj │ │ ├── flags_impl.clj │ │ ├── gauges.clj │ │ ├── grab.clj │ │ ├── grouped_queue.clj │ │ ├── hard_deletion_sweeper.clj │ │ ├── health.clj │ │ ├── honeycomb_api.clj │ │ ├── intern │ │ │ └── metrics.clj │ │ ├── jdbc │ │ │ ├── aurora.clj │ │ │ ├── cache_evict.clj │ │ │ ├── copy.clj │ │ │ ├── failover.clj │ │ │ ├── pgerrors.clj │ │ │ ├── socket_track.clj │ │ │ ├── sql.clj │ │ │ └── wal.clj │ │ ├── lib │ │ │ └── ring │ │ │ │ ├── sse.clj │ │ │ │ ├── undertow.clj │ │ │ │ └── websocket.clj │ │ ├── machine_summaries.clj │ │ ├── model │ │ │ ├── app.clj │ │ │ ├── app_admin_token.clj │ │ │ ├── app_authorized_redirect_origin.clj │ │ │ ├── app_email_sender.clj │ │ │ ├── app_email_template.clj │ │ │ ├── app_file.clj │ │ │ ├── app_members.clj │ │ │ ├── app_oauth_client.clj │ │ │ ├── app_oauth_code.clj │ │ │ ├── app_oauth_redirect.clj │ │ │ ├── app_oauth_service_provider.clj │ │ │ ├── app_upload_url.clj │ │ │ ├── app_user.clj │ │ │ ├── app_user_magic_code.clj │ │ │ ├── app_user_oauth_link.clj │ │ │ ├── app_user_refresh_token.clj │ │ │ ├── instant_cli_login.clj │ │ │ ├── instant_oauth_code.clj │ │ │ ├── instant_oauth_redirect.clj │ │ │ ├── instant_personal_access_token.clj │ │ │ ├── instant_profile.clj │ │ │ ├── instant_stripe_customer.clj │ │ │ ├── instant_subscription.clj │ │ │ ├── instant_user.clj │ │ │ ├── instant_user_magic_code.clj │ │ │ ├── instant_user_refresh_token.clj │ │ │ ├── member_invites.clj │ │ │ ├── oauth_app.clj │ │ │ ├── org.clj │ │ │ ├── org_members.clj │ │ │ ├── outreach.clj │ │ │ ├── rule.clj │ │ │ ├── schema.clj │ │ │ └── sync_sub.clj │ │ ├── nrepl.clj │ │ ├── oauth_apps │ │ │ └── routes.clj │ │ ├── plans.clj │ │ ├── postmark.clj │ │ ├── reactive │ │ │ ├── aggregator.clj │ │ │ ├── ephemeral.clj │ │ │ ├── invalidator.clj │ │ │ ├── query.clj │ │ │ ├── receive_queue.clj │ │ │ ├── session.clj │ │ │ ├── sse.clj │ │ │ ├── store.clj │ │ │ └── topics.clj │ │ ├── runtime │ │ │ ├── magic_code_auth.clj │ │ │ └── routes.clj │ │ ├── scratch │ │ │ ├── backtest.clj │ │ │ ├── backtest_vars.clj │ │ │ └── export.clj │ │ ├── scripts │ │ │ ├── analytics.clj │ │ │ ├── daily_metrics.clj │ │ │ ├── newsletter.clj │ │ │ └── welcome_email.clj │ │ ├── sendgrid.clj │ │ ├── session_counter.clj │ │ ├── storage │ │ │ ├── beta.clj │ │ │ ├── coordinator.clj │ │ │ ├── routes.clj │ │ │ ├── s3.clj │ │ │ └── sweeper.clj │ │ ├── stripe.clj │ │ ├── stripe_webhook.clj │ │ ├── superadmin │ │ │ └── routes.clj │ │ ├── system_catalog.clj │ │ ├── system_catalog_migration.clj │ │ ├── system_catalog_ops.clj │ │ └── util │ │ │ ├── async.clj │ │ │ ├── aws.clj │ │ │ ├── aws_signature.clj │ │ │ ├── cache.clj │ │ │ ├── coll.clj │ │ │ ├── crypt.clj │ │ │ ├── date.clj │ │ │ ├── delay.clj │ │ │ ├── e2e_tracer.clj │ │ │ ├── email.clj │ │ │ ├── exception.clj │ │ │ ├── hazelcast.clj │ │ │ ├── hsql.clj │ │ │ ├── http.clj │ │ │ ├── instaql.clj │ │ │ ├── io.clj │ │ │ ├── json.clj │ │ │ ├── lang.clj │ │ │ ├── logging_exporter.clj │ │ │ ├── number.clj │ │ │ ├── pg_hint_plan.clj │ │ │ ├── pgtime.clj │ │ │ ├── roles.clj │ │ │ ├── s3.clj │ │ │ ├── semver.clj │ │ │ ├── spec.clj │ │ │ ├── string.clj │ │ │ ├── test.clj │ │ │ ├── token.clj │ │ │ ├── tracer.clj │ │ │ ├── url.clj │ │ │ └── uuid.clj │ ├── java │ │ └── instant │ │ │ ├── SocketWrapper.java │ │ │ ├── SpanTrackException.java │ │ │ └── socketutil │ │ │ └── CountingSocket.java │ ├── tasks.clj │ └── tool.clj └── test │ └── instant │ ├── admin │ └── routes_test.clj │ ├── config_edn_test.clj │ ├── dash │ └── routes_test.clj │ ├── db │ ├── attr_sketch_test.clj │ ├── cel_test.clj │ ├── datalog_test.clj │ ├── indexing_jobs_test.clj │ ├── instaql_test.clj │ ├── model │ │ └── triple_test.clj │ └── transaction_test.clj │ ├── grouped_queue_test.clj │ ├── jdbc │ ├── copy_test.clj │ └── sql_test.clj │ ├── model │ ├── app_authorized_redirect_origin_test.clj │ ├── instant_user_test.clj │ ├── org_members_test.clj │ ├── orgs_test.clj │ └── rule_test.clj │ ├── reactive │ ├── aggregator_test.clj │ ├── invalidator_test.clj │ ├── session_test.clj │ └── store_test.clj │ ├── runtime │ └── routes_test.clj │ ├── storage │ ├── coordinator_test.clj │ ├── s3_test.clj │ └── sweeper_test.clj │ ├── stripe_test.clj │ ├── test_core.clj │ └── util │ ├── async_test.clj │ ├── aws_signature_test.clj │ ├── cache_test.clj │ ├── exception_test.clj │ ├── hazelcast_test.clj │ ├── hsql_test.clj │ ├── semver_test.clj │ └── uuid_test.clj └── vercel.json /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/actions/elastic-beanstalk/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /.github/actions/elastic-beanstalk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/actions/elastic-beanstalk/README.md -------------------------------------------------------------------------------- /.github/actions/elastic-beanstalk/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/actions/elastic-beanstalk/action.yml -------------------------------------------------------------------------------- /.github/actions/elastic-beanstalk/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/actions/elastic-beanstalk/bin/index.js -------------------------------------------------------------------------------- /.github/actions/elastic-beanstalk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/actions/elastic-beanstalk/package.json -------------------------------------------------------------------------------- /.github/actions/elastic-beanstalk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/actions/elastic-beanstalk/src/index.ts -------------------------------------------------------------------------------- /.github/actions/elastic-beanstalk/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/actions/elastic-beanstalk/src/main.ts -------------------------------------------------------------------------------- /.github/actions/elastic-beanstalk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/actions/elastic-beanstalk/tsconfig.json -------------------------------------------------------------------------------- /.github/actions/elastic-beanstalk/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/actions/elastic-beanstalk/yarn.lock -------------------------------------------------------------------------------- /.github/workflows/clojure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/workflows/clojure.yml -------------------------------------------------------------------------------- /.github/workflows/js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.github/workflows/js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/README.md -------------------------------------------------------------------------------- /client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/.dockerignore -------------------------------------------------------------------------------- /client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/.editorconfig -------------------------------------------------------------------------------- /client/.prettierignore: -------------------------------------------------------------------------------- 1 | template 2 | -------------------------------------------------------------------------------- /client/Dockerfile.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/Dockerfile.mcp -------------------------------------------------------------------------------- /client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/Makefile -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/README.md -------------------------------------------------------------------------------- /client/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/fly.toml -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/package.json -------------------------------------------------------------------------------- /client/packages/admin/.npmignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | -------------------------------------------------------------------------------- /client/packages/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/admin/README.md -------------------------------------------------------------------------------- /client/packages/admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/admin/package.json -------------------------------------------------------------------------------- /client/packages/admin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/admin/src/index.ts -------------------------------------------------------------------------------- /client/packages/admin/src/subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/admin/src/subscribe.ts -------------------------------------------------------------------------------- /client/packages/admin/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/admin/src/version.ts -------------------------------------------------------------------------------- /client/packages/admin/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/admin/tsconfig.dev.json -------------------------------------------------------------------------------- /client/packages/admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/admin/tsconfig.json -------------------------------------------------------------------------------- /client/packages/admin/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/admin/tsconfig.test.json -------------------------------------------------------------------------------- /client/packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/README.md -------------------------------------------------------------------------------- /client/packages/cli/__tests__/rename.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/__tests__/rename.test.ts -------------------------------------------------------------------------------- /client/packages/cli/bin/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import '../dist/index.js'; 4 | -------------------------------------------------------------------------------- /client/packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/package.json -------------------------------------------------------------------------------- /client/packages/cli/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/index.js -------------------------------------------------------------------------------- /client/packages/cli/src/rename.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/rename.ts -------------------------------------------------------------------------------- /client/packages/cli/src/renderSchemaPlan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/renderSchemaPlan.ts -------------------------------------------------------------------------------- /client/packages/cli/src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/ui/index.ts -------------------------------------------------------------------------------- /client/packages/cli/src/ui/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/ui/lib.ts -------------------------------------------------------------------------------- /client/packages/cli/src/util/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/util/fs.ts -------------------------------------------------------------------------------- /client/packages/cli/src/util/getAuthPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/util/getAuthPaths.ts -------------------------------------------------------------------------------- /client/packages/cli/src/util/loadConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/util/loadConfig.ts -------------------------------------------------------------------------------- /client/packages/cli/src/util/loadEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/util/loadEnv.ts -------------------------------------------------------------------------------- /client/packages/cli/src/util/packageManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/util/packageManager.js -------------------------------------------------------------------------------- /client/packages/cli/src/util/promptOk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/util/promptOk.ts -------------------------------------------------------------------------------- /client/packages/cli/src/util/renamePrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/util/renamePrompt.ts -------------------------------------------------------------------------------- /client/packages/cli/src/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/src/version.js -------------------------------------------------------------------------------- /client/packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /client/packages/core/.npmignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | -------------------------------------------------------------------------------- /client/packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/README.md -------------------------------------------------------------------------------- /client/packages/core/__tests__/src/typeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/__tests__/src/typeUtils.ts -------------------------------------------------------------------------------- /client/packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/package.json -------------------------------------------------------------------------------- /client/packages/core/src/Connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/Connection.ts -------------------------------------------------------------------------------- /client/packages/core/src/InMemoryStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/InMemoryStorage.ts -------------------------------------------------------------------------------- /client/packages/core/src/IndexedDBStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/IndexedDBStorage.ts -------------------------------------------------------------------------------- /client/packages/core/src/InstantError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/InstantError.ts -------------------------------------------------------------------------------- /client/packages/core/src/Reactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/Reactor.js -------------------------------------------------------------------------------- /client/packages/core/src/StorageAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/StorageAPI.ts -------------------------------------------------------------------------------- /client/packages/core/src/SyncTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/SyncTable.ts -------------------------------------------------------------------------------- /client/packages/core/src/__types__/typeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/__types__/typeUtils.ts -------------------------------------------------------------------------------- /client/packages/core/src/attrTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/attrTypes.ts -------------------------------------------------------------------------------- /client/packages/core/src/authAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/authAPI.ts -------------------------------------------------------------------------------- /client/packages/core/src/clientTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/clientTypes.ts -------------------------------------------------------------------------------- /client/packages/core/src/coreTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/coreTypes.ts -------------------------------------------------------------------------------- /client/packages/core/src/datalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/datalog.js -------------------------------------------------------------------------------- /client/packages/core/src/devtool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/devtool.ts -------------------------------------------------------------------------------- /client/packages/core/src/helperTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/helperTypes.ts -------------------------------------------------------------------------------- /client/packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/index.ts -------------------------------------------------------------------------------- /client/packages/core/src/instaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/instaml.js -------------------------------------------------------------------------------- /client/packages/core/src/instaql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/instaql.js -------------------------------------------------------------------------------- /client/packages/core/src/instatx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/instatx.ts -------------------------------------------------------------------------------- /client/packages/core/src/model/instaqlResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/model/instaqlResult.js -------------------------------------------------------------------------------- /client/packages/core/src/presence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/presence.ts -------------------------------------------------------------------------------- /client/packages/core/src/presenceTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/presenceTypes.ts -------------------------------------------------------------------------------- /client/packages/core/src/queryTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/queryTypes.ts -------------------------------------------------------------------------------- /client/packages/core/src/queryValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/queryValidation.ts -------------------------------------------------------------------------------- /client/packages/core/src/rulesTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/rulesTypes.ts -------------------------------------------------------------------------------- /client/packages/core/src/sanityCheckQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/sanityCheckQueries.ts -------------------------------------------------------------------------------- /client/packages/core/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/schema.ts -------------------------------------------------------------------------------- /client/packages/core/src/schemaTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/schemaTypes.ts -------------------------------------------------------------------------------- /client/packages/core/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/store.js -------------------------------------------------------------------------------- /client/packages/core/src/utils/Deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/Deferred.js -------------------------------------------------------------------------------- /client/packages/core/src/utils/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/dates.ts -------------------------------------------------------------------------------- /client/packages/core/src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/error.ts -------------------------------------------------------------------------------- /client/packages/core/src/utils/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/fetch.ts -------------------------------------------------------------------------------- /client/packages/core/src/utils/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/flags.ts -------------------------------------------------------------------------------- /client/packages/core/src/utils/linkIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/linkIndex.ts -------------------------------------------------------------------------------- /client/packages/core/src/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/log.ts -------------------------------------------------------------------------------- /client/packages/core/src/utils/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/object.js -------------------------------------------------------------------------------- /client/packages/core/src/utils/pgtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/pgtime.ts -------------------------------------------------------------------------------- /client/packages/core/src/utils/pick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/pick.js -------------------------------------------------------------------------------- /client/packages/core/src/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/strings.ts -------------------------------------------------------------------------------- /client/packages/core/src/utils/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/uuid.ts -------------------------------------------------------------------------------- /client/packages/core/src/utils/weakHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/utils/weakHash.ts -------------------------------------------------------------------------------- /client/packages/core/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/src/version.ts -------------------------------------------------------------------------------- /client/packages/core/tsconfig.cjs.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/tsconfig.cjs.dev.json -------------------------------------------------------------------------------- /client/packages/core/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/tsconfig.dev.json -------------------------------------------------------------------------------- /client/packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/tsconfig.json -------------------------------------------------------------------------------- /client/packages/core/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/tsconfig.test.json -------------------------------------------------------------------------------- /client/packages/core/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/core/vite.config.ts -------------------------------------------------------------------------------- /client/packages/create-instant-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/create-instant-app/README.md -------------------------------------------------------------------------------- /client/packages/create-instant-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/create-instant-app/package.json -------------------------------------------------------------------------------- /client/packages/create-instant-app/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/create-instant-app/src/cli.ts -------------------------------------------------------------------------------- /client/packages/create-instant-app/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/create-instant-app/src/env.ts -------------------------------------------------------------------------------- /client/packages/create-instant-app/src/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/create-instant-app/src/git.ts -------------------------------------------------------------------------------- /client/packages/create-instant-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/create-instant-app/src/index.ts -------------------------------------------------------------------------------- /client/packages/create-instant-app/src/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/create-instant-app/src/login.ts -------------------------------------------------------------------------------- /client/packages/create-instant-app/template/base/expo/hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /client/packages/create-instant-app/template/base/vite-vanilla/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/packages/mcp/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/.env.example -------------------------------------------------------------------------------- /client/packages/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/README.md -------------------------------------------------------------------------------- /client/packages/mcp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/package.json -------------------------------------------------------------------------------- /client/packages/mcp/src/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/src/crypto.ts -------------------------------------------------------------------------------- /client/packages/mcp/src/db/instant.perms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/src/db/instant.perms.ts -------------------------------------------------------------------------------- /client/packages/mcp/src/db/instant.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/src/db/instant.schema.ts -------------------------------------------------------------------------------- /client/packages/mcp/src/index.html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/src/index.html.ts -------------------------------------------------------------------------------- /client/packages/mcp/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/src/index.ts -------------------------------------------------------------------------------- /client/packages/mcp/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/src/schema.ts -------------------------------------------------------------------------------- /client/packages/mcp/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/src/version.ts -------------------------------------------------------------------------------- /client/packages/mcp/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/tsconfig.dev.json -------------------------------------------------------------------------------- /client/packages/mcp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/mcp/tsconfig.json -------------------------------------------------------------------------------- /client/packages/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/README.md -------------------------------------------------------------------------------- /client/packages/platform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/package.json -------------------------------------------------------------------------------- /client/packages/platform/src/ProgressPromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/ProgressPromise.ts -------------------------------------------------------------------------------- /client/packages/platform/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/api.ts -------------------------------------------------------------------------------- /client/packages/platform/src/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/crypto.ts -------------------------------------------------------------------------------- /client/packages/platform/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/index.ts -------------------------------------------------------------------------------- /client/packages/platform/src/migrationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/migrationUtils.ts -------------------------------------------------------------------------------- /client/packages/platform/src/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/migrations.ts -------------------------------------------------------------------------------- /client/packages/platform/src/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/oauth.ts -------------------------------------------------------------------------------- /client/packages/platform/src/oauthCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/oauthCommon.ts -------------------------------------------------------------------------------- /client/packages/platform/src/perms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/perms.ts -------------------------------------------------------------------------------- /client/packages/platform/src/relationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/relationships.ts -------------------------------------------------------------------------------- /client/packages/platform/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/schema.ts -------------------------------------------------------------------------------- /client/packages/platform/src/serverOAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/serverOAuth.ts -------------------------------------------------------------------------------- /client/packages/platform/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/util.ts -------------------------------------------------------------------------------- /client/packages/platform/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/src/version.ts -------------------------------------------------------------------------------- /client/packages/platform/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/tsconfig.dev.json -------------------------------------------------------------------------------- /client/packages/platform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/tsconfig.json -------------------------------------------------------------------------------- /client/packages/platform/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/platform/vite.config.ts -------------------------------------------------------------------------------- /client/packages/react-common/.npmignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | -------------------------------------------------------------------------------- /client/packages/react-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-common/README.md -------------------------------------------------------------------------------- /client/packages/react-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-common/package.json -------------------------------------------------------------------------------- /client/packages/react-common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-common/src/index.ts -------------------------------------------------------------------------------- /client/packages/react-common/src/useQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-common/src/useQuery.ts -------------------------------------------------------------------------------- /client/packages/react-common/src/useTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-common/src/useTimeout.ts -------------------------------------------------------------------------------- /client/packages/react-common/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-common/src/version.ts -------------------------------------------------------------------------------- /client/packages/react-common/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-common/tsconfig.dev.json -------------------------------------------------------------------------------- /client/packages/react-common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-common/tsconfig.json -------------------------------------------------------------------------------- /client/packages/react-common/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-common/vite.config.ts -------------------------------------------------------------------------------- /client/packages/react-native/.npmignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | -------------------------------------------------------------------------------- /client/packages/react-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-native/README.md -------------------------------------------------------------------------------- /client/packages/react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-native/package.json -------------------------------------------------------------------------------- /client/packages/react-native/src/Storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-native/src/Storage.js -------------------------------------------------------------------------------- /client/packages/react-native/src/cli.ts: -------------------------------------------------------------------------------- 1 | export * from '@instantdb/core'; 2 | -------------------------------------------------------------------------------- /client/packages/react-native/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-native/src/index.ts -------------------------------------------------------------------------------- /client/packages/react-native/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-native/src/version.ts -------------------------------------------------------------------------------- /client/packages/react-native/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-native/tsconfig.json -------------------------------------------------------------------------------- /client/packages/react-native/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react-native/tsconfig.test.json -------------------------------------------------------------------------------- /client/packages/react/.npmignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | -------------------------------------------------------------------------------- /client/packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/README.md -------------------------------------------------------------------------------- /client/packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/package.json -------------------------------------------------------------------------------- /client/packages/react/src/Cursors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/src/Cursors.tsx -------------------------------------------------------------------------------- /client/packages/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/src/index.ts -------------------------------------------------------------------------------- /client/packages/react/src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/src/init.ts -------------------------------------------------------------------------------- /client/packages/react/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/src/version.ts -------------------------------------------------------------------------------- /client/packages/react/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/tsconfig.dev.json -------------------------------------------------------------------------------- /client/packages/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/tsconfig.json -------------------------------------------------------------------------------- /client/packages/react/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/tsconfig.test.json -------------------------------------------------------------------------------- /client/packages/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/react/vite.config.ts -------------------------------------------------------------------------------- /client/packages/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/version/README.md -------------------------------------------------------------------------------- /client/packages/version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/version/package.json -------------------------------------------------------------------------------- /client/packages/version/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/version/src/index.ts -------------------------------------------------------------------------------- /client/packages/version/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/version/src/version.ts -------------------------------------------------------------------------------- /client/packages/version/tsconfig.cjs.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/version/tsconfig.cjs.dev.json -------------------------------------------------------------------------------- /client/packages/version/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/version/tsconfig.dev.json -------------------------------------------------------------------------------- /client/packages/version/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/version/tsconfig.json -------------------------------------------------------------------------------- /client/packages/version/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/packages/version/vite.config.ts -------------------------------------------------------------------------------- /client/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/pnpm-lock.yaml -------------------------------------------------------------------------------- /client/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/pnpm-workspace.yaml -------------------------------------------------------------------------------- /client/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/prettier.config.js -------------------------------------------------------------------------------- /client/sandbox/admin-sdk-express/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/admin-sdk-express/.env.example -------------------------------------------------------------------------------- /client/sandbox/admin-sdk-express/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/admin-sdk-express/README.md -------------------------------------------------------------------------------- /client/sandbox/admin-sdk-express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/admin-sdk-express/package.json -------------------------------------------------------------------------------- /client/sandbox/admin-sdk-express/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/admin-sdk-express/src/index.ts -------------------------------------------------------------------------------- /client/sandbox/cli-nodejs/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/cli-nodejs/.env.example -------------------------------------------------------------------------------- /client/sandbox/cli-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/cli-nodejs/README.md -------------------------------------------------------------------------------- /client/sandbox/cli-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/cli-nodejs/package.json -------------------------------------------------------------------------------- /client/sandbox/cli-nodejs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/cli-nodejs/tsconfig.json -------------------------------------------------------------------------------- /client/sandbox/react-native-expo/.env.example: -------------------------------------------------------------------------------- 1 | EXPO_PUBLIC_INSTANT_APP_ID= 2 | -------------------------------------------------------------------------------- /client/sandbox/react-native-expo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-native-expo/.gitignore -------------------------------------------------------------------------------- /client/sandbox/react-native-expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-native-expo/README.md -------------------------------------------------------------------------------- /client/sandbox/react-native-expo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-native-expo/app.json -------------------------------------------------------------------------------- /client/sandbox/react-native-expo/app/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-native-expo/app/config.ts -------------------------------------------------------------------------------- /client/sandbox/react-native-expo/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-native-expo/app/index.tsx -------------------------------------------------------------------------------- /client/sandbox/react-native-expo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-native-expo/package.json -------------------------------------------------------------------------------- /client/sandbox/react-native-expo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-native-expo/tsconfig.json -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_INSTANT_APP_ID= 2 | -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/.gitignore -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/README.md -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/app/layout.tsx -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/config.ts -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/lib/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/lib/files.ts -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/next.config.js -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/package.json -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/pages/_app.tsx -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/pages/index.tsx -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/postcss.config.js -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/public/vercel.svg -------------------------------------------------------------------------------- /client/sandbox/react-nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/react-nextjs/tsconfig.json -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/.env.example: -------------------------------------------------------------------------------- 1 | VITE_INSTANT_APP_ID= 2 | -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/strong-init-vite/.gitignore -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/strong-init-vite/README.md -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/strong-init-vite/index.html -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/strong-init-vite/package.json -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/strong-init-vite/src/App.tsx -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/strong-init-vite/src/index.css -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/strong-init-vite/src/main.tsx -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/sandbox/strong-init-vite/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/strong-init-vite/tsconfig.json -------------------------------------------------------------------------------- /client/sandbox/task-tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/.gitignore -------------------------------------------------------------------------------- /client/sandbox/task-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/README.md -------------------------------------------------------------------------------- /client/sandbox/task-tracker/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/config.ts -------------------------------------------------------------------------------- /client/sandbox/task-tracker/instant-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/instant-rules.md -------------------------------------------------------------------------------- /client/sandbox/task-tracker/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/next.config.ts -------------------------------------------------------------------------------- /client/sandbox/task-tracker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/package.json -------------------------------------------------------------------------------- /client/sandbox/task-tracker/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/public/file.svg -------------------------------------------------------------------------------- /client/sandbox/task-tracker/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/public/globe.svg -------------------------------------------------------------------------------- /client/sandbox/task-tracker/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/public/next.svg -------------------------------------------------------------------------------- /client/sandbox/task-tracker/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/public/vercel.svg -------------------------------------------------------------------------------- /client/sandbox/task-tracker/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/public/window.svg -------------------------------------------------------------------------------- /client/sandbox/task-tracker/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/src/app/page.tsx -------------------------------------------------------------------------------- /client/sandbox/task-tracker/src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/src/lib/db.ts -------------------------------------------------------------------------------- /client/sandbox/task-tracker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/task-tracker/tsconfig.json -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-nuxt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-nuxt/.gitignore -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-nuxt/README.md -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-nuxt/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-nuxt/app.vue -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-nuxt/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-nuxt/nuxt.config.ts -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-nuxt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-nuxt/package.json -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-nuxt/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-nuxt/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-nuxt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-nuxt/tsconfig.json -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/.env.example: -------------------------------------------------------------------------------- 1 | VITE_INSTANT_APP_ID= 2 | -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/.gitignore -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/README.md -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/index.html -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/package.json -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/schema.html -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/src/main.ts -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/src/schema.ts -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/src/style.css -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/tsconfig.json -------------------------------------------------------------------------------- /client/sandbox/vanilla-js-vite/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/sandbox/vanilla-js-vite/vite.config.ts -------------------------------------------------------------------------------- /client/scripts/fixImports.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/scripts/fixImports.mjs -------------------------------------------------------------------------------- /client/scripts/publish_packages.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/scripts/publish_packages.clj -------------------------------------------------------------------------------- /client/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/tsconfig.base.json -------------------------------------------------------------------------------- /client/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/turbo.json -------------------------------------------------------------------------------- /client/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/version.md -------------------------------------------------------------------------------- /client/www/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/.env.example -------------------------------------------------------------------------------- /client/www/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /client/www/.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | .turbo 3 | _posts/** 4 | -------------------------------------------------------------------------------- /client/www/_emails/html/apr2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/apr2025.html -------------------------------------------------------------------------------- /client/www/_emails/html/aug2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/aug2025.html -------------------------------------------------------------------------------- /client/www/_emails/html/dec2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/dec2024.html -------------------------------------------------------------------------------- /client/www/_emails/html/feb2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/feb2025.html -------------------------------------------------------------------------------- /client/www/_emails/html/jul2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/jul2025.html -------------------------------------------------------------------------------- /client/www/_emails/html/mar2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/mar2025.html -------------------------------------------------------------------------------- /client/www/_emails/html/nov2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/nov2024.html -------------------------------------------------------------------------------- /client/www/_emails/html/oct2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/oct2024.html -------------------------------------------------------------------------------- /client/www/_emails/html/oct2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/oct2025.html -------------------------------------------------------------------------------- /client/www/_emails/html/sep2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/sep2025.html -------------------------------------------------------------------------------- /client/www/_emails/html/welcome_feb_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/html/welcome_feb_2025.html -------------------------------------------------------------------------------- /client/www/_emails/markdown/apr2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/apr2025.md -------------------------------------------------------------------------------- /client/www/_emails/markdown/aug2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/aug2025.md -------------------------------------------------------------------------------- /client/www/_emails/markdown/dec2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/dec2024.md -------------------------------------------------------------------------------- /client/www/_emails/markdown/feb2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/feb2025.md -------------------------------------------------------------------------------- /client/www/_emails/markdown/jul2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/jul2025.md -------------------------------------------------------------------------------- /client/www/_emails/markdown/mar2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/mar2025.md -------------------------------------------------------------------------------- /client/www/_emails/markdown/nov2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/nov2024.md -------------------------------------------------------------------------------- /client/www/_emails/markdown/oct2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/oct2024.md -------------------------------------------------------------------------------- /client/www/_emails/markdown/oct2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/oct2025.md -------------------------------------------------------------------------------- /client/www/_emails/markdown/sep2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/markdown/sep2025.md -------------------------------------------------------------------------------- /client/www/_emails/replace-images/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/replace-images/index.mjs -------------------------------------------------------------------------------- /client/www/_emails/txt/apr2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/apr2025.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/aug2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/aug2025.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/dec2024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/dec2024.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/feb2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/feb2025.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/jul2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/jul2025.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/mar2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/mar2025.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/nov2024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/nov2024.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/oct2024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/oct2024.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/oct2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/oct2025.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/sep2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/sep2025.txt -------------------------------------------------------------------------------- /client/www/_emails/txt/welcome_feb_2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_emails/txt/welcome_feb_2025.txt -------------------------------------------------------------------------------- /client/www/_examples/chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_examples/chat.md -------------------------------------------------------------------------------- /client/www/_examples/microblog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_examples/microblog.md -------------------------------------------------------------------------------- /client/www/_examples/todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_examples/todos.md -------------------------------------------------------------------------------- /client/www/_posts/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/agents.md -------------------------------------------------------------------------------- /client/www/_posts/conj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/conj.md -------------------------------------------------------------------------------- /client/www/_posts/count_min_sketch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/count_min_sketch.md -------------------------------------------------------------------------------- /client/www/_posts/datalogjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/datalogjs.md -------------------------------------------------------------------------------- /client/www/_posts/db_browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/db_browser.md -------------------------------------------------------------------------------- /client/www/_posts/founding_firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/founding_firebase.md -------------------------------------------------------------------------------- /client/www/_posts/gpt_5_vs_opus_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/gpt_5_vs_opus_4.md -------------------------------------------------------------------------------- /client/www/_posts/heroui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/heroui.md -------------------------------------------------------------------------------- /client/www/_posts/mirando.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/mirando.md -------------------------------------------------------------------------------- /client/www/_posts/next_firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/next_firebase.md -------------------------------------------------------------------------------- /client/www/_posts/pg_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/pg_upgrade.md -------------------------------------------------------------------------------- /client/www/_posts/seed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/seed.md -------------------------------------------------------------------------------- /client/www/_posts/sync_future.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/_posts/sync_future.md -------------------------------------------------------------------------------- /client/www/components/AnimatedCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/AnimatedCounter.tsx -------------------------------------------------------------------------------- /client/www/components/DemoIframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/DemoIframe.tsx -------------------------------------------------------------------------------- /client/www/components/Dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/Dev.tsx -------------------------------------------------------------------------------- /client/www/components/DocsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/DocsPage.jsx -------------------------------------------------------------------------------- /client/www/components/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/DropdownMenu.tsx -------------------------------------------------------------------------------- /client/www/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /client/www/components/Lightbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/Lightbox.tsx -------------------------------------------------------------------------------- /client/www/components/PostHogIdentify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/PostHogIdentify.tsx -------------------------------------------------------------------------------- /client/www/components/admin/AdminPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/admin/AdminPage.tsx -------------------------------------------------------------------------------- /client/www/components/admin/AdminRoot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/admin/AdminRoot.jsx -------------------------------------------------------------------------------- /client/www/components/clientOnlyPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/clientOnlyPage.tsx -------------------------------------------------------------------------------- /client/www/components/dash/AppAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/AppAuth.tsx -------------------------------------------------------------------------------- /client/www/components/dash/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/Auth.tsx -------------------------------------------------------------------------------- /client/www/components/dash/Billing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/Billing.tsx -------------------------------------------------------------------------------- /client/www/components/dash/CLILoginDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/CLILoginDialog.tsx -------------------------------------------------------------------------------- /client/www/components/dash/DarkModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/DarkModeToggle.tsx -------------------------------------------------------------------------------- /client/www/components/dash/Invites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/Invites.tsx -------------------------------------------------------------------------------- /client/www/components/dash/MainDashLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/MainDashLayout.tsx -------------------------------------------------------------------------------- /client/www/components/dash/OAuthApps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/OAuthApps.tsx -------------------------------------------------------------------------------- /client/www/components/dash/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/Onboarding.tsx -------------------------------------------------------------------------------- /client/www/components/dash/Orgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/Orgs.tsx -------------------------------------------------------------------------------- /client/www/components/dash/Perms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/Perms.tsx -------------------------------------------------------------------------------- /client/www/components/dash/ProfilePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/ProfilePanel.tsx -------------------------------------------------------------------------------- /client/www/components/dash/Sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/Sandbox.tsx -------------------------------------------------------------------------------- /client/www/components/dash/Schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/Schema.tsx -------------------------------------------------------------------------------- /client/www/components/dash/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/TopBar.tsx -------------------------------------------------------------------------------- /client/www/components/dash/auth/Apple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/auth/Apple.tsx -------------------------------------------------------------------------------- /client/www/components/dash/auth/Clerk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/auth/Clerk.tsx -------------------------------------------------------------------------------- /client/www/components/dash/auth/Email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/auth/Email.tsx -------------------------------------------------------------------------------- /client/www/components/dash/auth/Firebase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/auth/Firebase.tsx -------------------------------------------------------------------------------- /client/www/components/dash/auth/GitHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/auth/GitHub.tsx -------------------------------------------------------------------------------- /client/www/components/dash/auth/Google.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/auth/Google.tsx -------------------------------------------------------------------------------- /client/www/components/dash/auth/LinkedIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/auth/LinkedIn.tsx -------------------------------------------------------------------------------- /client/www/components/dash/auth/Origins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/auth/Origins.tsx -------------------------------------------------------------------------------- /client/www/components/dash/auth/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/auth/shared.tsx -------------------------------------------------------------------------------- /client/www/components/dash/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/dash/shared.tsx -------------------------------------------------------------------------------- /client/www/components/docs/Ansi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Ansi.jsx -------------------------------------------------------------------------------- /client/www/components/docs/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Button.jsx -------------------------------------------------------------------------------- /client/www/components/docs/Callout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Callout.jsx -------------------------------------------------------------------------------- /client/www/components/docs/CopyPromptBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/CopyPromptBox.tsx -------------------------------------------------------------------------------- /client/www/components/docs/Fence.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Fence.jsx -------------------------------------------------------------------------------- /client/www/components/docs/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Icon.jsx -------------------------------------------------------------------------------- /client/www/components/docs/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Layout.jsx -------------------------------------------------------------------------------- /client/www/components/docs/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Logo.jsx -------------------------------------------------------------------------------- /client/www/components/docs/NavButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/NavButton.jsx -------------------------------------------------------------------------------- /client/www/components/docs/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Navigation.jsx -------------------------------------------------------------------------------- /client/www/components/docs/Prose.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Prose.jsx -------------------------------------------------------------------------------- /client/www/components/docs/RatingBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/RatingBox.tsx -------------------------------------------------------------------------------- /client/www/components/docs/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/Search.jsx -------------------------------------------------------------------------------- /client/www/components/docs/TabbedSingle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/TabbedSingle.jsx -------------------------------------------------------------------------------- /client/www/components/docs/ThemeSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/docs/ThemeSelector.jsx -------------------------------------------------------------------------------- /client/www/components/essays/sketch/sketch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/essays/sketch/sketch.ts -------------------------------------------------------------------------------- /client/www/components/icons/NetlifyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/icons/NetlifyIcon.tsx -------------------------------------------------------------------------------- /client/www/components/icons/VercelIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/icons/VercelIcon.tsx -------------------------------------------------------------------------------- /client/www/components/marketingUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/marketingUi.tsx -------------------------------------------------------------------------------- /client/www/components/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/resizable.tsx -------------------------------------------------------------------------------- /client/www/components/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/select.tsx -------------------------------------------------------------------------------- /client/www/components/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/switch.tsx -------------------------------------------------------------------------------- /client/www/components/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/components/ui.tsx -------------------------------------------------------------------------------- /client/www/data/docsNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/data/docsNavigation.js -------------------------------------------------------------------------------- /client/www/data/tutorial-examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/data/tutorial-examples.ts -------------------------------------------------------------------------------- /client/www/data/tutorialMonacoTheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/data/tutorialMonacoTheme.json -------------------------------------------------------------------------------- /client/www/lib/SelectedAppContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/SelectedAppContext.ts -------------------------------------------------------------------------------- /client/www/lib/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/app.tsx -------------------------------------------------------------------------------- /client/www/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/auth.ts -------------------------------------------------------------------------------- /client/www/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/config.ts -------------------------------------------------------------------------------- /client/www/lib/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/contexts.ts -------------------------------------------------------------------------------- /client/www/lib/createInitializedContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/createInitializedContext.tsx -------------------------------------------------------------------------------- /client/www/lib/emails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/emails.js -------------------------------------------------------------------------------- /client/www/lib/ephemeral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/ephemeral.tsx -------------------------------------------------------------------------------- /client/www/lib/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/errors.ts -------------------------------------------------------------------------------- /client/www/lib/examples/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/examples/data.ts -------------------------------------------------------------------------------- /client/www/lib/examples/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/examples/server.ts -------------------------------------------------------------------------------- /client/www/lib/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/fetch.ts -------------------------------------------------------------------------------- /client/www/lib/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/flags.ts -------------------------------------------------------------------------------- /client/www/lib/footnotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/footnotes.ts -------------------------------------------------------------------------------- /client/www/lib/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/format.ts -------------------------------------------------------------------------------- /client/www/lib/hooks/explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/explorer.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useAttrNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useAttrNotes.ts -------------------------------------------------------------------------------- /client/www/lib/hooks/useClickOutside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useClickOutside.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useColumnVisibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useColumnVisibility.ts -------------------------------------------------------------------------------- /client/www/lib/hooks/useCurrentDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useCurrentDate.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useDashFetch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useDashFetch.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useFlag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useFlag.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useForm.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useIsHydrated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useIsHydrated.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useIsOverflow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useIsOverflow.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useLocalStorage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useLocalStorage.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useMonacoJsonSchema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useMonacoJsonSchema.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useOrgPaid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useOrgPaid.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useSavedQueryState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useSavedQueryState.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useTicketSystem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useTicketSystem.tsx -------------------------------------------------------------------------------- /client/www/lib/hooks/useWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/hooks/useWorkspace.tsx -------------------------------------------------------------------------------- /client/www/lib/indexingJobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/indexingJobs.ts -------------------------------------------------------------------------------- /client/www/lib/intern/docs-feedback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/intern/docs-feedback/README.md -------------------------------------------------------------------------------- /client/www/lib/intern/docs-feedback/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/intern/docs-feedback/db.ts -------------------------------------------------------------------------------- /client/www/lib/intern/instant-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/intern/instant-rules.md -------------------------------------------------------------------------------- /client/www/lib/locallySavedApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/locallySavedApp.tsx -------------------------------------------------------------------------------- /client/www/lib/makeAttrComparator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/makeAttrComparator.tsx -------------------------------------------------------------------------------- /client/www/lib/markdoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/markdoc.ts -------------------------------------------------------------------------------- /client/www/lib/monaco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/monaco.ts -------------------------------------------------------------------------------- /client/www/lib/muxVideos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/muxVideos.ts -------------------------------------------------------------------------------- /client/www/lib/og.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/og.ts -------------------------------------------------------------------------------- /client/www/lib/orgRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/orgRoles.ts -------------------------------------------------------------------------------- /client/www/lib/parsePermsJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/parsePermsJSON.ts -------------------------------------------------------------------------------- /client/www/lib/patchBrowserEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/patchBrowserEvents.ts -------------------------------------------------------------------------------- /client/www/lib/permsJsonSchema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/permsJsonSchema.tsx -------------------------------------------------------------------------------- /client/www/lib/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/posts.ts -------------------------------------------------------------------------------- /client/www/lib/relationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/relationships.ts -------------------------------------------------------------------------------- /client/www/lib/renames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/renames.ts -------------------------------------------------------------------------------- /client/www/lib/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/schema.tsx -------------------------------------------------------------------------------- /client/www/lib/swrCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/swrCache.ts -------------------------------------------------------------------------------- /client/www/lib/tableWidthSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/tableWidthSize.ts -------------------------------------------------------------------------------- /client/www/lib/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/toast.js -------------------------------------------------------------------------------- /client/www/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/types.ts -------------------------------------------------------------------------------- /client/www/lib/uptimeAPI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/uptimeAPI.tsx -------------------------------------------------------------------------------- /client/www/lib/url.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/url.tsx -------------------------------------------------------------------------------- /client/www/lib/videos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/lib/videos.ts -------------------------------------------------------------------------------- /client/www/markdoc/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/markdoc/nodes.js -------------------------------------------------------------------------------- /client/www/markdoc/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/markdoc/tags.js -------------------------------------------------------------------------------- /client/www/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/next-env.d.ts -------------------------------------------------------------------------------- /client/www/next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/next-sitemap.config.js -------------------------------------------------------------------------------- /client/www/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/next.config.js -------------------------------------------------------------------------------- /client/www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/package.json -------------------------------------------------------------------------------- /client/www/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/404.tsx -------------------------------------------------------------------------------- /client/www/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/_app.tsx -------------------------------------------------------------------------------- /client/www/pages/_devtool/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/_devtool/index.tsx -------------------------------------------------------------------------------- /client/www/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/_document.js -------------------------------------------------------------------------------- /client/www/pages/api/og.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/api/og.tsx -------------------------------------------------------------------------------- /client/www/pages/dash/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/dash/index.tsx -------------------------------------------------------------------------------- /client/www/pages/dash/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/dash/new.tsx -------------------------------------------------------------------------------- /client/www/pages/dash/oauth/callback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/dash/oauth/callback.tsx -------------------------------------------------------------------------------- /client/www/pages/dash/onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/dash/onboarding.tsx -------------------------------------------------------------------------------- /client/www/pages/dash/org.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/dash/org.tsx -------------------------------------------------------------------------------- /client/www/pages/dash/user-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/dash/user-settings.tsx -------------------------------------------------------------------------------- /client/www/pages/dino-habits/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/dino-habits/index.tsx -------------------------------------------------------------------------------- /client/www/pages/docs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth.md -------------------------------------------------------------------------------- /client/www/pages/docs/auth/apple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth/apple.md -------------------------------------------------------------------------------- /client/www/pages/docs/auth/clerk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth/clerk.md -------------------------------------------------------------------------------- /client/www/pages/docs/auth/firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth/firebase.md -------------------------------------------------------------------------------- /client/www/pages/docs/auth/github-oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth/github-oauth.md -------------------------------------------------------------------------------- /client/www/pages/docs/auth/google-oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth/google-oauth.md -------------------------------------------------------------------------------- /client/www/pages/docs/auth/guest-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth/guest-auth.md -------------------------------------------------------------------------------- /client/www/pages/docs/auth/linkedin-oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth/linkedin-oauth.md -------------------------------------------------------------------------------- /client/www/pages/docs/auth/magic-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth/magic-codes.md -------------------------------------------------------------------------------- /client/www/pages/docs/auth/platform-oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/auth/platform-oauth.md -------------------------------------------------------------------------------- /client/www/pages/docs/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/backend.md -------------------------------------------------------------------------------- /client/www/pages/docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/cli.md -------------------------------------------------------------------------------- /client/www/pages/docs/common-mistakes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/common-mistakes.md -------------------------------------------------------------------------------- /client/www/pages/docs/create-instant-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/create-instant-app.md -------------------------------------------------------------------------------- /client/www/pages/docs/devtool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/devtool.md -------------------------------------------------------------------------------- /client/www/pages/docs/emails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/emails.md -------------------------------------------------------------------------------- /client/www/pages/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/index.md -------------------------------------------------------------------------------- /client/www/pages/docs/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/init.md -------------------------------------------------------------------------------- /client/www/pages/docs/instaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/instaml.md -------------------------------------------------------------------------------- /client/www/pages/docs/instaql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/instaql.md -------------------------------------------------------------------------------- /client/www/pages/docs/modeling-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/modeling-data.md -------------------------------------------------------------------------------- /client/www/pages/docs/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/patterns.md -------------------------------------------------------------------------------- /client/www/pages/docs/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/permissions.md -------------------------------------------------------------------------------- /client/www/pages/docs/presence-and-topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/presence-and-topics.md -------------------------------------------------------------------------------- /client/www/pages/docs/start-rn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/start-rn.md -------------------------------------------------------------------------------- /client/www/pages/docs/start-vanilla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/start-vanilla.md -------------------------------------------------------------------------------- /client/www/pages/docs/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/storage.md -------------------------------------------------------------------------------- /client/www/pages/docs/teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/teams.md -------------------------------------------------------------------------------- /client/www/pages/docs/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/users.md -------------------------------------------------------------------------------- /client/www/pages/docs/using-llms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/using-llms.md -------------------------------------------------------------------------------- /client/www/pages/docs/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/docs/workflow.md -------------------------------------------------------------------------------- /client/www/pages/essays/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/essays/[slug].tsx -------------------------------------------------------------------------------- /client/www/pages/essays/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/essays/index.tsx -------------------------------------------------------------------------------- /client/www/pages/examples/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/examples/[slug].tsx -------------------------------------------------------------------------------- /client/www/pages/examples/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/examples/index.tsx -------------------------------------------------------------------------------- /client/www/pages/hiring/backend-engineer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/hiring/backend-engineer.tsx -------------------------------------------------------------------------------- /client/www/pages/hiring/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/hiring/index.tsx -------------------------------------------------------------------------------- /client/www/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/index.tsx -------------------------------------------------------------------------------- /client/www/pages/intern/docs-feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/docs-feedback.tsx -------------------------------------------------------------------------------- /client/www/pages/intern/emails/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/emails/[slug].tsx -------------------------------------------------------------------------------- /client/www/pages/intern/emails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/emails/index.tsx -------------------------------------------------------------------------------- /client/www/pages/intern/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/index.tsx -------------------------------------------------------------------------------- /client/www/pages/intern/investor_updates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/investor_updates.tsx -------------------------------------------------------------------------------- /client/www/pages/intern/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/overview.tsx -------------------------------------------------------------------------------- /client/www/pages/intern/paid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/paid.tsx -------------------------------------------------------------------------------- /client/www/pages/intern/signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/signup.tsx -------------------------------------------------------------------------------- /client/www/pages/intern/storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/storage.tsx -------------------------------------------------------------------------------- /client/www/pages/intern/top.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/intern/top.jsx -------------------------------------------------------------------------------- /client/www/pages/labs/oauth_apps_demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/labs/oauth_apps_demo.tsx -------------------------------------------------------------------------------- /client/www/pages/labs/platform_demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/labs/platform_demo.tsx -------------------------------------------------------------------------------- /client/www/pages/platform/oauth/start.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/platform/oauth/start.tsx -------------------------------------------------------------------------------- /client/www/pages/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/pricing.tsx -------------------------------------------------------------------------------- /client/www/pages/privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/privacy.tsx -------------------------------------------------------------------------------- /client/www/pages/recipes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/recipes.tsx -------------------------------------------------------------------------------- /client/www/pages/recipes/1-todos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/recipes/1-todos.tsx -------------------------------------------------------------------------------- /client/www/pages/recipes/2-auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/recipes/2-auth.tsx -------------------------------------------------------------------------------- /client/www/pages/recipes/3-cursors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/recipes/3-cursors.tsx -------------------------------------------------------------------------------- /client/www/pages/recipes/4-custom-cursors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/recipes/4-custom-cursors.tsx -------------------------------------------------------------------------------- /client/www/pages/recipes/5-reactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/recipes/5-reactions.tsx -------------------------------------------------------------------------------- /client/www/pages/recipes/7-avatar-stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/recipes/7-avatar-stack.tsx -------------------------------------------------------------------------------- /client/www/pages/resources/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/resources/ui.tsx -------------------------------------------------------------------------------- /client/www/pages/status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/status.tsx -------------------------------------------------------------------------------- /client/www/pages/terms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/terms.tsx -------------------------------------------------------------------------------- /client/www/pages/tutorial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/pages/tutorial.tsx -------------------------------------------------------------------------------- /client/www/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/postcss.config.js -------------------------------------------------------------------------------- /client/www/public/img/apple_logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/apple_logo_black.svg -------------------------------------------------------------------------------- /client/www/public/img/clerk_logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/clerk_logo_black.svg -------------------------------------------------------------------------------- /client/www/public/img/firebase_auth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/firebase_auth.svg -------------------------------------------------------------------------------- /client/www/public/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/github.svg -------------------------------------------------------------------------------- /client/www/public/img/google_g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/google_g.svg -------------------------------------------------------------------------------- /client/www/public/img/hiring/backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/hiring/backend.png -------------------------------------------------------------------------------- /client/www/public/img/hiring/explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/hiring/explorer.png -------------------------------------------------------------------------------- /client/www/public/img/hiring/sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/hiring/sandbox.png -------------------------------------------------------------------------------- /client/www/public/img/hiring/sync_engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/hiring/sync_engine.png -------------------------------------------------------------------------------- /client/www/public/img/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/favicon-16x16.png -------------------------------------------------------------------------------- /client/www/public/img/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/favicon-32x32.png -------------------------------------------------------------------------------- /client/www/public/img/icon/favicon-96x96.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/favicon-96x96.svg -------------------------------------------------------------------------------- /client/www/public/img/icon/logo-512.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/logo-512.svg -------------------------------------------------------------------------------- /client/www/public/img/icon/logo_with_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/logo_with_text.svg -------------------------------------------------------------------------------- /client/www/public/img/icon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/mstile-144x144.png -------------------------------------------------------------------------------- /client/www/public/img/icon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/mstile-150x150.png -------------------------------------------------------------------------------- /client/www/public/img/icon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/mstile-310x150.png -------------------------------------------------------------------------------- /client/www/public/img/icon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/mstile-310x310.png -------------------------------------------------------------------------------- /client/www/public/img/icon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/icon/mstile-70x70.png -------------------------------------------------------------------------------- /client/www/public/img/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/linkedin.svg -------------------------------------------------------------------------------- /client/www/public/img/og_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/og_preview.png -------------------------------------------------------------------------------- /client/www/public/img/peeps/aj_nandi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/peeps/aj_nandi.jpeg -------------------------------------------------------------------------------- /client/www/public/img/peeps/alex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/peeps/alex.png -------------------------------------------------------------------------------- /client/www/public/img/peeps/hunter.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/peeps/hunter.jpeg -------------------------------------------------------------------------------- /client/www/public/img/peeps/james.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/peeps/james.png -------------------------------------------------------------------------------- /client/www/public/img/peeps/nacho.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/peeps/nacho.jpg -------------------------------------------------------------------------------- /client/www/public/img/peeps/sean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/peeps/sean.png -------------------------------------------------------------------------------- /client/www/public/img/yc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/img/yc_logo.png -------------------------------------------------------------------------------- /client/www/public/marketing/discord-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/marketing/discord-icon.svg -------------------------------------------------------------------------------- /client/www/public/posts/agents/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/posts/agents/hero.png -------------------------------------------------------------------------------- /client/www/public/posts/agents/og_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/posts/agents/og_image.png -------------------------------------------------------------------------------- /client/www/public/posts/heroui/junior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/posts/heroui/junior.png -------------------------------------------------------------------------------- /client/www/public/posts/heroui/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/posts/heroui/stars.png -------------------------------------------------------------------------------- /client/www/public/readmes/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/readmes/architecture.svg -------------------------------------------------------------------------------- /client/www/public/readmes/compression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/public/readmes/compression.svg -------------------------------------------------------------------------------- /client/www/recipes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/recipes.ts -------------------------------------------------------------------------------- /client/www/scripts/gen-llm-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/scripts/gen-llm-rules.ts -------------------------------------------------------------------------------- /client/www/scripts/gen-llms-txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/scripts/gen-llms-txt.ts -------------------------------------------------------------------------------- /client/www/scripts/gen-md-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/scripts/gen-md-docs.ts -------------------------------------------------------------------------------- /client/www/scripts/gen-rss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/scripts/gen-rss.ts -------------------------------------------------------------------------------- /client/www/scripts/index-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/scripts/index-docs.ts -------------------------------------------------------------------------------- /client/www/styles/docs/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/styles/docs/prism.css -------------------------------------------------------------------------------- /client/www/styles/docs/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/styles/docs/tailwind.css -------------------------------------------------------------------------------- /client/www/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/styles/globals.css -------------------------------------------------------------------------------- /client/www/styles/status.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/styles/status.module.css -------------------------------------------------------------------------------- /client/www/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/tailwind.config.js -------------------------------------------------------------------------------- /client/www/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/client/www/tsconfig.json -------------------------------------------------------------------------------- /server/.clj-kondo/.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | -------------------------------------------------------------------------------- /server/.clj-kondo/ci-config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/.clj-kondo/ci-config.edn -------------------------------------------------------------------------------- /server/.clj-kondo/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/.clj-kondo/config.edn -------------------------------------------------------------------------------- /server/.clj-kondo/hooks/defsql.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/.clj-kondo/hooks/defsql.clj -------------------------------------------------------------------------------- /server/.clj-kondo/hooks/with_prod_conn.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/.clj-kondo/hooks/with_prod_conn.clj -------------------------------------------------------------------------------- /server/.ebextensions/resources.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/.ebextensions/resources.config -------------------------------------------------------------------------------- /server/.ebextensions/sysctl.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/.ebextensions/sysctl.config -------------------------------------------------------------------------------- /server/.elasticbeanstalk/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/.elasticbeanstalk/config.yml -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.lsp/config.edn: -------------------------------------------------------------------------------- 1 | {:cljfmt {:indents {#re "io/warn-io" [[:block 1]]}}} 2 | -------------------------------------------------------------------------------- /server/.platform/hooks/prebuild/prebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/.platform/hooks/prebuild/prebuild.sh -------------------------------------------------------------------------------- /server/Caddyfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/Caddyfile.dev -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/Dockerfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/Dockerfile-dev -------------------------------------------------------------------------------- /server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/Makefile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/README.md -------------------------------------------------------------------------------- /server/build.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/build.clj -------------------------------------------------------------------------------- /server/ci_trigger.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /server/cljfmt.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/cljfmt.edn -------------------------------------------------------------------------------- /server/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/deps.edn -------------------------------------------------------------------------------- /server/dev-postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/dev-postgres/Dockerfile -------------------------------------------------------------------------------- /server/dev-postgres/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/dev-postgres/Makefile -------------------------------------------------------------------------------- /server/dev-postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/dev-postgres/README.md -------------------------------------------------------------------------------- /server/dev-resources/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/dev-resources/hooks/pre-commit -------------------------------------------------------------------------------- /server/dev/data_readers.clj: -------------------------------------------------------------------------------- 1 | {p tool/p} -------------------------------------------------------------------------------- /server/dev/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/dev/user.clj -------------------------------------------------------------------------------- /server/docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/docker-compose-dev.yml -------------------------------------------------------------------------------- /server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/docker-compose.yml -------------------------------------------------------------------------------- /server/flags-config/.env: -------------------------------------------------------------------------------- 1 | INSTANT_APP_ID=24a4d71b-7bb2-4630-9aee-01146af26239 2 | -------------------------------------------------------------------------------- /server/flags-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/flags-config/README.md -------------------------------------------------------------------------------- /server/flags-config/instant.perms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/flags-config/instant.perms.ts -------------------------------------------------------------------------------- /server/flags-config/instant.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/flags-config/instant.schema.ts -------------------------------------------------------------------------------- /server/flags-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/flags-config/package.json -------------------------------------------------------------------------------- /server/flags-config/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/flags-config/pnpm-lock.yaml -------------------------------------------------------------------------------- /server/refinery/config-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/refinery/config-redis.yaml -------------------------------------------------------------------------------- /server/refinery/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/refinery/config.yaml -------------------------------------------------------------------------------- /server/refinery/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/refinery/docker-compose.yml -------------------------------------------------------------------------------- /server/refinery/refinery.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/refinery/refinery.env -------------------------------------------------------------------------------- /server/refinery/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/refinery/rules.yaml -------------------------------------------------------------------------------- /server/resources/config/dev.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/config/dev.edn -------------------------------------------------------------------------------- /server/resources/config/prod.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/config/prod.edn -------------------------------------------------------------------------------- /server/resources/config/staging.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/config/staging.edn -------------------------------------------------------------------------------- /server/resources/config/test.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/config/test.edn -------------------------------------------------------------------------------- /server/resources/data_readers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/data_readers.clj -------------------------------------------------------------------------------- /server/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/logback.xml -------------------------------------------------------------------------------- /server/resources/migrations/02_add_grabs.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE grabs; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/03_add_transactions.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE transactions; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/04_add_rules.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE rules; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/05_add_app_admin_tokens.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE app_admin_tokens; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/07_add_profiles.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE instant_profiles; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/14_add_apps_created_at_index.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX apps_created_at; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/15_pkce.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/migrations/15_pkce.down.sql -------------------------------------------------------------------------------- /server/resources/migrations/15_pkce.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/migrations/15_pkce.up.sql -------------------------------------------------------------------------------- /server/resources/migrations/18_add_sent_at_to_invites.down.sql: -------------------------------------------------------------------------------- 1 | alter table app_member_invites drop column sent_at; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/20_add_name_to_app_email_templates.down.sql: -------------------------------------------------------------------------------- 1 | alter table app_email_templates drop column name; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/20_add_name_to_app_email_templates.up.sql: -------------------------------------------------------------------------------- 1 | alter table app_email_templates add column name text; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/25_byop_connection_string.down.sql: -------------------------------------------------------------------------------- 1 | alter table apps drop column connection_string; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/25_byop_connection_string.up.sql: -------------------------------------------------------------------------------- 1 | alter table apps add column connection_string bytea; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/27_inferred_type.down.sql: -------------------------------------------------------------------------------- 1 | alter table attrs drop column inferred_types; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/27_inferred_type.up.sql: -------------------------------------------------------------------------------- 1 | alter table attrs add column inferred_types bit(32); 2 | -------------------------------------------------------------------------------- /server/resources/migrations/28_config.down.sql: -------------------------------------------------------------------------------- 1 | drop table config; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/28_config.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/migrations/28_config.up.sql -------------------------------------------------------------------------------- /server/resources/migrations/29_clerk.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/migrations/29_clerk.down.sql -------------------------------------------------------------------------------- /server/resources/migrations/29_clerk.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/migrations/29_clerk.up.sql -------------------------------------------------------------------------------- /server/resources/migrations/31_attrs_replica_full.down.sql: -------------------------------------------------------------------------------- 1 | alter table attrs replica identity default; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/31_attrs_replica_full.up.sql: -------------------------------------------------------------------------------- 1 | alter table attrs replica identity full; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/32_pgcrypto.down.sql: -------------------------------------------------------------------------------- 1 | -- do nothing for the down migration 2 | -------------------------------------------------------------------------------- /server/resources/migrations/32_pgcrypto.up.sql: -------------------------------------------------------------------------------- 1 | create extension if not exists pgcrypto; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/33_users_in_triples_flag.down.sql: -------------------------------------------------------------------------------- 1 | alter table apps drop column users_in_triples; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/33_users_in_triples_flag.up.sql: -------------------------------------------------------------------------------- 1 | alter table apps add column users_in_triples boolean; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/37_remove_users_in_triples_flag.down.sql: -------------------------------------------------------------------------------- 1 | alter table apps add column users_in_triples boolean; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/37_remove_users_in_triples_flag.up.sql: -------------------------------------------------------------------------------- 1 | alter table apps drop column users_in_triples; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/39_fix_extract_boolean.down.sql: -------------------------------------------------------------------------------- 1 | -- no down migration 2 | -------------------------------------------------------------------------------- /server/resources/migrations/42_add_transactions_app_id_idx.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX transactions_app_id_idx; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/44_add_daily_app_transactions.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE daily_app_transactions; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/46_add_created_at_index_to_transactions.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX transactions_created_at_idx; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/48_add_dap_primary_key.down.sql: -------------------------------------------------------------------------------- 1 | alter table daily_app_transactions drop column id; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/49_add_user_flags.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE user_flags; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/50_add_app_upload_urls.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE app_upload_urls; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/51_add_triples_created_at_index.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX triples_created_at_idx; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/54_on_delete_reverse.down.sql: -------------------------------------------------------------------------------- 1 | alter table attrs drop column on_delete_reverse; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/59_is_required.down.sql: -------------------------------------------------------------------------------- 1 | alter table attrs drop column is_required; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/63_seed_homepage_app.down.sql: -------------------------------------------------------------------------------- 1 | delete from apps where id = 'fc5a4977-910a-43d9-ac28-39c7837c1eb5'; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/66_indexing_jobs_error_data.down.sql: -------------------------------------------------------------------------------- 1 | alter table indexing_jobs drop column error_data; -------------------------------------------------------------------------------- /server/resources/migrations/66_indexing_jobs_error_data.up.sql: -------------------------------------------------------------------------------- 1 | alter table indexing_jobs add column error_data jsonb; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/70_improve_file_system_attrs.down.sql: -------------------------------------------------------------------------------- 1 | -- no-op 2 | -------------------------------------------------------------------------------- /server/resources/migrations/71_required_file_size.down.sql: -------------------------------------------------------------------------------- 1 | -- no-op 2 | -------------------------------------------------------------------------------- /server/resources/migrations/76_attr_metadata.down.sql: -------------------------------------------------------------------------------- 1 | alter table 2 | attrs drop column if exists metadata; 3 | 4 | -------------------------------------------------------------------------------- /server/resources/migrations/80_org-invites.down.sql: -------------------------------------------------------------------------------- 1 | drop table org_member_invites; 2 | -------------------------------------------------------------------------------- /server/resources/migrations/81_denormalize_subscription.down.sql: -------------------------------------------------------------------------------- 1 | alter table apps drop column subscription_id; 2 | -------------------------------------------------------------------------------- /server/resources/sample_triples/movie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/sample_triples/movie.json -------------------------------------------------------------------------------- /server/resources/sample_triples/zeneca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/sample_triples/zeneca.json -------------------------------------------------------------------------------- /server/resources/uri-schemes.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/resources/uri-schemes.edn -------------------------------------------------------------------------------- /server/scripts/aws_tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/aws_tunnel.sh -------------------------------------------------------------------------------- /server/scripts/clone_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/clone_app.sh -------------------------------------------------------------------------------- /server/scripts/clone_app.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/clone_app.sql -------------------------------------------------------------------------------- /server/scripts/eb_deploy.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/eb_deploy.clj -------------------------------------------------------------------------------- /server/scripts/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/export.sh -------------------------------------------------------------------------------- /server/scripts/export/copy_apps.sql: -------------------------------------------------------------------------------- 1 | COPY (SELECT id, title, created_at FROM apps WHERE id = :'app_id') TO STDOUT 2 | -------------------------------------------------------------------------------- /server/scripts/export/copy_attrs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/export/copy_attrs.sql -------------------------------------------------------------------------------- /server/scripts/export/copy_idents.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/export/copy_idents.sql -------------------------------------------------------------------------------- /server/scripts/export/copy_rules.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/export/copy_rules.sql -------------------------------------------------------------------------------- /server/scripts/export/copy_triples.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/export/copy_triples.sql -------------------------------------------------------------------------------- /server/scripts/install_dev_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/install_dev_certs.sh -------------------------------------------------------------------------------- /server/scripts/jmc_tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/jmc_tunnel.sh -------------------------------------------------------------------------------- /server/scripts/manual_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/manual_deploy.sh -------------------------------------------------------------------------------- /server/scripts/prod_connection_string.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/prod_connection_string.sh -------------------------------------------------------------------------------- /server/scripts/prod_ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/prod_ssh.sh -------------------------------------------------------------------------------- /server/scripts/prod_tunnel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/scripts/prod_tunnel.sh -------------------------------------------------------------------------------- /server/src/instant/admin/model.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/admin/model.clj -------------------------------------------------------------------------------- /server/src/instant/admin/routes.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/admin/routes.clj -------------------------------------------------------------------------------- /server/src/instant/admin/transact_queue.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/admin/transact_queue.clj -------------------------------------------------------------------------------- /server/src/instant/aurora_config.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/aurora_config.clj -------------------------------------------------------------------------------- /server/src/instant/auth/jwt.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/auth/jwt.clj -------------------------------------------------------------------------------- /server/src/instant/auth/oauth.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/auth/oauth.clj -------------------------------------------------------------------------------- /server/src/instant/comment.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/comment.clj -------------------------------------------------------------------------------- /server/src/instant/config.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/config.clj -------------------------------------------------------------------------------- /server/src/instant/config_edn.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/config_edn.clj -------------------------------------------------------------------------------- /server/src/instant/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/core.clj -------------------------------------------------------------------------------- /server/src/instant/dash/admin.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/dash/admin.clj -------------------------------------------------------------------------------- /server/src/instant/dash/ephemeral_app.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/dash/ephemeral_app.clj -------------------------------------------------------------------------------- /server/src/instant/dash/routes.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/dash/routes.clj -------------------------------------------------------------------------------- /server/src/instant/data/bootstrap.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/data/bootstrap.clj -------------------------------------------------------------------------------- /server/src/instant/data/constants.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/data/constants.clj -------------------------------------------------------------------------------- /server/src/instant/data/resolvers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/data/resolvers.clj -------------------------------------------------------------------------------- /server/src/instant/db/attr_sketch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/attr_sketch.clj -------------------------------------------------------------------------------- /server/src/instant/db/cel.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/cel.clj -------------------------------------------------------------------------------- /server/src/instant/db/dataloader.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/dataloader.clj -------------------------------------------------------------------------------- /server/src/instant/db/datalog.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/datalog.clj -------------------------------------------------------------------------------- /server/src/instant/db/hint_testing.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/hint_testing.clj -------------------------------------------------------------------------------- /server/src/instant/db/indexing_jobs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/indexing_jobs.clj -------------------------------------------------------------------------------- /server/src/instant/db/instaql.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/instaql.clj -------------------------------------------------------------------------------- /server/src/instant/db/model/attr.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/model/attr.clj -------------------------------------------------------------------------------- /server/src/instant/db/model/attr_pat.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/model/attr_pat.clj -------------------------------------------------------------------------------- /server/src/instant/db/model/entity.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/model/entity.clj -------------------------------------------------------------------------------- /server/src/instant/db/model/transaction.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/model/transaction.clj -------------------------------------------------------------------------------- /server/src/instant/db/model/triple.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/model/triple.clj -------------------------------------------------------------------------------- /server/src/instant/db/model/triple_cols.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/model/triple_cols.clj -------------------------------------------------------------------------------- /server/src/instant/db/pg_introspect.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/pg_introspect.clj -------------------------------------------------------------------------------- /server/src/instant/db/rule_where_testing.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/rule_where_testing.clj -------------------------------------------------------------------------------- /server/src/instant/db/sync_table.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/sync_table.clj -------------------------------------------------------------------------------- /server/src/instant/db/transaction.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/db/transaction.clj -------------------------------------------------------------------------------- /server/src/instant/discord.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/discord.clj -------------------------------------------------------------------------------- /server/src/instant/fixtures.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/fixtures.clj -------------------------------------------------------------------------------- /server/src/instant/flags.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/flags.clj -------------------------------------------------------------------------------- /server/src/instant/flags_impl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/flags_impl.clj -------------------------------------------------------------------------------- /server/src/instant/gauges.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/gauges.clj -------------------------------------------------------------------------------- /server/src/instant/grab.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/grab.clj -------------------------------------------------------------------------------- /server/src/instant/grouped_queue.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/grouped_queue.clj -------------------------------------------------------------------------------- /server/src/instant/hard_deletion_sweeper.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/hard_deletion_sweeper.clj -------------------------------------------------------------------------------- /server/src/instant/health.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/health.clj -------------------------------------------------------------------------------- /server/src/instant/honeycomb_api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/honeycomb_api.clj -------------------------------------------------------------------------------- /server/src/instant/intern/metrics.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/intern/metrics.clj -------------------------------------------------------------------------------- /server/src/instant/jdbc/aurora.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/jdbc/aurora.clj -------------------------------------------------------------------------------- /server/src/instant/jdbc/cache_evict.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/jdbc/cache_evict.clj -------------------------------------------------------------------------------- /server/src/instant/jdbc/copy.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/jdbc/copy.clj -------------------------------------------------------------------------------- /server/src/instant/jdbc/failover.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/jdbc/failover.clj -------------------------------------------------------------------------------- /server/src/instant/jdbc/pgerrors.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/jdbc/pgerrors.clj -------------------------------------------------------------------------------- /server/src/instant/jdbc/socket_track.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/jdbc/socket_track.clj -------------------------------------------------------------------------------- /server/src/instant/jdbc/sql.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/jdbc/sql.clj -------------------------------------------------------------------------------- /server/src/instant/jdbc/wal.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/jdbc/wal.clj -------------------------------------------------------------------------------- /server/src/instant/lib/ring/sse.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/lib/ring/sse.clj -------------------------------------------------------------------------------- /server/src/instant/lib/ring/undertow.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/lib/ring/undertow.clj -------------------------------------------------------------------------------- /server/src/instant/lib/ring/websocket.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/lib/ring/websocket.clj -------------------------------------------------------------------------------- /server/src/instant/machine_summaries.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/machine_summaries.clj -------------------------------------------------------------------------------- /server/src/instant/model/app.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/app.clj -------------------------------------------------------------------------------- /server/src/instant/model/app_admin_token.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/app_admin_token.clj -------------------------------------------------------------------------------- /server/src/instant/model/app_email_sender.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/app_email_sender.clj -------------------------------------------------------------------------------- /server/src/instant/model/app_file.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/app_file.clj -------------------------------------------------------------------------------- /server/src/instant/model/app_members.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/app_members.clj -------------------------------------------------------------------------------- /server/src/instant/model/app_oauth_client.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/app_oauth_client.clj -------------------------------------------------------------------------------- /server/src/instant/model/app_oauth_code.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/app_oauth_code.clj -------------------------------------------------------------------------------- /server/src/instant/model/app_upload_url.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/app_upload_url.clj -------------------------------------------------------------------------------- /server/src/instant/model/app_user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/app_user.clj -------------------------------------------------------------------------------- /server/src/instant/model/instant_profile.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/instant_profile.clj -------------------------------------------------------------------------------- /server/src/instant/model/instant_user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/instant_user.clj -------------------------------------------------------------------------------- /server/src/instant/model/member_invites.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/member_invites.clj -------------------------------------------------------------------------------- /server/src/instant/model/oauth_app.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/oauth_app.clj -------------------------------------------------------------------------------- /server/src/instant/model/org.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/org.clj -------------------------------------------------------------------------------- /server/src/instant/model/org_members.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/org_members.clj -------------------------------------------------------------------------------- /server/src/instant/model/outreach.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/outreach.clj -------------------------------------------------------------------------------- /server/src/instant/model/rule.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/rule.clj -------------------------------------------------------------------------------- /server/src/instant/model/schema.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/schema.clj -------------------------------------------------------------------------------- /server/src/instant/model/sync_sub.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/model/sync_sub.clj -------------------------------------------------------------------------------- /server/src/instant/nrepl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/nrepl.clj -------------------------------------------------------------------------------- /server/src/instant/oauth_apps/routes.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/oauth_apps/routes.clj -------------------------------------------------------------------------------- /server/src/instant/plans.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/plans.clj -------------------------------------------------------------------------------- /server/src/instant/postmark.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/postmark.clj -------------------------------------------------------------------------------- /server/src/instant/reactive/aggregator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/reactive/aggregator.clj -------------------------------------------------------------------------------- /server/src/instant/reactive/ephemeral.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/reactive/ephemeral.clj -------------------------------------------------------------------------------- /server/src/instant/reactive/invalidator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/reactive/invalidator.clj -------------------------------------------------------------------------------- /server/src/instant/reactive/query.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/reactive/query.clj -------------------------------------------------------------------------------- /server/src/instant/reactive/receive_queue.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/reactive/receive_queue.clj -------------------------------------------------------------------------------- /server/src/instant/reactive/session.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/reactive/session.clj -------------------------------------------------------------------------------- /server/src/instant/reactive/sse.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/reactive/sse.clj -------------------------------------------------------------------------------- /server/src/instant/reactive/store.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/reactive/store.clj -------------------------------------------------------------------------------- /server/src/instant/reactive/topics.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/reactive/topics.clj -------------------------------------------------------------------------------- /server/src/instant/runtime/routes.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/runtime/routes.clj -------------------------------------------------------------------------------- /server/src/instant/scratch/backtest.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/scratch/backtest.clj -------------------------------------------------------------------------------- /server/src/instant/scratch/backtest_vars.clj: -------------------------------------------------------------------------------- 1 | (ns instant.scratch.backtest-vars) 2 | 3 | (def ^:dynamic *use-new* false) 4 | -------------------------------------------------------------------------------- /server/src/instant/scratch/export.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/scratch/export.clj -------------------------------------------------------------------------------- /server/src/instant/scripts/analytics.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/scripts/analytics.clj -------------------------------------------------------------------------------- /server/src/instant/scripts/daily_metrics.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/scripts/daily_metrics.clj -------------------------------------------------------------------------------- /server/src/instant/scripts/newsletter.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/scripts/newsletter.clj -------------------------------------------------------------------------------- /server/src/instant/scripts/welcome_email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/scripts/welcome_email.clj -------------------------------------------------------------------------------- /server/src/instant/sendgrid.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/sendgrid.clj -------------------------------------------------------------------------------- /server/src/instant/session_counter.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/session_counter.clj -------------------------------------------------------------------------------- /server/src/instant/storage/beta.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/storage/beta.clj -------------------------------------------------------------------------------- /server/src/instant/storage/coordinator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/storage/coordinator.clj -------------------------------------------------------------------------------- /server/src/instant/storage/routes.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/storage/routes.clj -------------------------------------------------------------------------------- /server/src/instant/storage/s3.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/storage/s3.clj -------------------------------------------------------------------------------- /server/src/instant/storage/sweeper.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/storage/sweeper.clj -------------------------------------------------------------------------------- /server/src/instant/stripe.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/stripe.clj -------------------------------------------------------------------------------- /server/src/instant/stripe_webhook.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/stripe_webhook.clj -------------------------------------------------------------------------------- /server/src/instant/superadmin/routes.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/superadmin/routes.clj -------------------------------------------------------------------------------- /server/src/instant/system_catalog.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/system_catalog.clj -------------------------------------------------------------------------------- /server/src/instant/system_catalog_ops.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/system_catalog_ops.clj -------------------------------------------------------------------------------- /server/src/instant/util/async.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/async.clj -------------------------------------------------------------------------------- /server/src/instant/util/aws.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/aws.clj -------------------------------------------------------------------------------- /server/src/instant/util/aws_signature.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/aws_signature.clj -------------------------------------------------------------------------------- /server/src/instant/util/cache.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/cache.clj -------------------------------------------------------------------------------- /server/src/instant/util/coll.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/coll.clj -------------------------------------------------------------------------------- /server/src/instant/util/crypt.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/crypt.clj -------------------------------------------------------------------------------- /server/src/instant/util/date.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/date.clj -------------------------------------------------------------------------------- /server/src/instant/util/delay.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/delay.clj -------------------------------------------------------------------------------- /server/src/instant/util/e2e_tracer.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/e2e_tracer.clj -------------------------------------------------------------------------------- /server/src/instant/util/email.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/email.clj -------------------------------------------------------------------------------- /server/src/instant/util/exception.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/exception.clj -------------------------------------------------------------------------------- /server/src/instant/util/hazelcast.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/hazelcast.clj -------------------------------------------------------------------------------- /server/src/instant/util/hsql.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/hsql.clj -------------------------------------------------------------------------------- /server/src/instant/util/http.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/http.clj -------------------------------------------------------------------------------- /server/src/instant/util/instaql.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/instaql.clj -------------------------------------------------------------------------------- /server/src/instant/util/io.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/io.clj -------------------------------------------------------------------------------- /server/src/instant/util/json.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/json.clj -------------------------------------------------------------------------------- /server/src/instant/util/lang.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/lang.clj -------------------------------------------------------------------------------- /server/src/instant/util/logging_exporter.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/logging_exporter.clj -------------------------------------------------------------------------------- /server/src/instant/util/number.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/number.clj -------------------------------------------------------------------------------- /server/src/instant/util/pg_hint_plan.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/pg_hint_plan.clj -------------------------------------------------------------------------------- /server/src/instant/util/pgtime.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/pgtime.clj -------------------------------------------------------------------------------- /server/src/instant/util/roles.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/roles.clj -------------------------------------------------------------------------------- /server/src/instant/util/s3.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/s3.clj -------------------------------------------------------------------------------- /server/src/instant/util/semver.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/semver.clj -------------------------------------------------------------------------------- /server/src/instant/util/spec.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/spec.clj -------------------------------------------------------------------------------- /server/src/instant/util/string.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/string.clj -------------------------------------------------------------------------------- /server/src/instant/util/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/test.clj -------------------------------------------------------------------------------- /server/src/instant/util/token.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/token.clj -------------------------------------------------------------------------------- /server/src/instant/util/tracer.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/tracer.clj -------------------------------------------------------------------------------- /server/src/instant/util/url.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/url.clj -------------------------------------------------------------------------------- /server/src/instant/util/uuid.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/instant/util/uuid.clj -------------------------------------------------------------------------------- /server/src/java/instant/SocketWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/java/instant/SocketWrapper.java -------------------------------------------------------------------------------- /server/src/tasks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/tasks.clj -------------------------------------------------------------------------------- /server/src/tool.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/src/tool.clj -------------------------------------------------------------------------------- /server/test/instant/admin/routes_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/admin/routes_test.clj -------------------------------------------------------------------------------- /server/test/instant/config_edn_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/config_edn_test.clj -------------------------------------------------------------------------------- /server/test/instant/dash/routes_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/dash/routes_test.clj -------------------------------------------------------------------------------- /server/test/instant/db/attr_sketch_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/db/attr_sketch_test.clj -------------------------------------------------------------------------------- /server/test/instant/db/cel_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/db/cel_test.clj -------------------------------------------------------------------------------- /server/test/instant/db/datalog_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/db/datalog_test.clj -------------------------------------------------------------------------------- /server/test/instant/db/indexing_jobs_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/db/indexing_jobs_test.clj -------------------------------------------------------------------------------- /server/test/instant/db/instaql_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/db/instaql_test.clj -------------------------------------------------------------------------------- /server/test/instant/db/model/triple_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/db/model/triple_test.clj -------------------------------------------------------------------------------- /server/test/instant/db/transaction_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/db/transaction_test.clj -------------------------------------------------------------------------------- /server/test/instant/grouped_queue_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/grouped_queue_test.clj -------------------------------------------------------------------------------- /server/test/instant/jdbc/copy_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/jdbc/copy_test.clj -------------------------------------------------------------------------------- /server/test/instant/jdbc/sql_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/jdbc/sql_test.clj -------------------------------------------------------------------------------- /server/test/instant/model/orgs_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/model/orgs_test.clj -------------------------------------------------------------------------------- /server/test/instant/model/rule_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/model/rule_test.clj -------------------------------------------------------------------------------- /server/test/instant/reactive/session_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/reactive/session_test.clj -------------------------------------------------------------------------------- /server/test/instant/reactive/store_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/reactive/store_test.clj -------------------------------------------------------------------------------- /server/test/instant/runtime/routes_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/runtime/routes_test.clj -------------------------------------------------------------------------------- /server/test/instant/storage/s3_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/storage/s3_test.clj -------------------------------------------------------------------------------- /server/test/instant/storage/sweeper_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/storage/sweeper_test.clj -------------------------------------------------------------------------------- /server/test/instant/stripe_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/stripe_test.clj -------------------------------------------------------------------------------- /server/test/instant/test_core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/test_core.clj -------------------------------------------------------------------------------- /server/test/instant/util/async_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/util/async_test.clj -------------------------------------------------------------------------------- /server/test/instant/util/cache_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/util/cache_test.clj -------------------------------------------------------------------------------- /server/test/instant/util/exception_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/util/exception_test.clj -------------------------------------------------------------------------------- /server/test/instant/util/hazelcast_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/util/hazelcast_test.clj -------------------------------------------------------------------------------- /server/test/instant/util/hsql_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/util/hsql_test.clj -------------------------------------------------------------------------------- /server/test/instant/util/semver_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/util/semver_test.clj -------------------------------------------------------------------------------- /server/test/instant/util/uuid_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/server/test/instant/util/uuid_test.clj -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantdb/instant/HEAD/vercel.json --------------------------------------------------------------------------------