├── .gitignore ├── LICENSE ├── README.md ├── ai-chat ├── .gitignore ├── README.md ├── bot │ ├── db │ │ ├── avatar.sql.go │ │ ├── bot.sql.go │ │ ├── extension.go │ │ ├── migrations │ │ │ └── 001_create_tables.up.sql │ │ ├── queries │ │ │ ├── avatar.sql │ │ │ └── bot.sql │ │ ├── sqlc_db.go │ │ ├── sqlc_models.go │ │ └── sqlc_querier.go │ └── service.go ├── chat │ ├── provider │ │ ├── discord │ │ │ ├── db │ │ │ │ ├── migrations │ │ │ │ │ └── 001_create_tables.up.sql │ │ │ │ ├── queries │ │ │ │ │ └── webhook.sql │ │ │ │ ├── sqlc_db.go │ │ │ │ ├── sqlc_models.go │ │ │ │ ├── sqlc_querier.go │ │ │ │ └── webhook.sql.go │ │ │ └── service.go │ │ ├── local │ │ │ ├── chat │ │ │ │ ├── client.go │ │ │ │ └── hub.go │ │ │ ├── config.cue │ │ │ ├── datasource.go │ │ │ ├── service.go │ │ │ └── static │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ ├── assets │ │ │ │ │ ├── index-CDjSLHeh.js │ │ │ │ │ ├── index-ChJ65fA8.css │ │ │ │ │ └── powered-by-encore-BVNxEtXQ.png │ │ │ │ ├── favicon.png │ │ │ │ ├── favicon.svg │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ ├── postcss.config.js │ │ │ │ ├── public │ │ │ │ ├── favicon.png │ │ │ │ └── favicon.svg │ │ │ │ ├── src │ │ │ │ ├── App.tsx │ │ │ │ ├── EncoreChat.tsx │ │ │ │ ├── Home.tsx │ │ │ │ ├── assets │ │ │ │ │ └── powered-by-encore.png │ │ │ │ ├── client.ts │ │ │ │ ├── components │ │ │ │ │ ├── AddBotModal.tsx │ │ │ │ │ ├── Button.tsx │ │ │ │ │ ├── Chat.tsx │ │ │ │ │ ├── ChatService.ts │ │ │ │ │ ├── InviteFriendModal.tsx │ │ │ │ │ ├── Modal.tsx │ │ │ │ │ ├── ProfileModal.tsx │ │ │ │ │ └── SlideOver.tsx │ │ │ │ ├── index.css │ │ │ │ ├── main.tsx │ │ │ │ └── vite-env.d.ts │ │ │ │ ├── tailwind.config.js │ │ │ │ ├── tsconfig.json │ │ │ │ ├── tsconfig.node.json │ │ │ │ └── vite.config.ts │ │ ├── provider.go │ │ ├── pubsub.go │ │ └── slack │ │ │ ├── bot-manifest.json │ │ │ └── service.go │ └── service │ │ ├── channel.go │ │ ├── client │ │ ├── client.go │ │ ├── discord │ │ │ └── client.go │ │ ├── local │ │ │ └── client.go │ │ └── slack │ │ │ └── client.go │ │ ├── config.cue │ │ ├── cron.go │ │ ├── db │ │ ├── channel.sql.go │ │ ├── ids.go │ │ ├── message.sql.go │ │ ├── migrations │ │ │ └── 001_create_tables.up.sql │ │ ├── queries │ │ │ ├── channel.sql │ │ │ ├── message.sql │ │ │ └── user.sql │ │ ├── sqlc_db.go │ │ ├── sqlc_models.go │ │ ├── sqlc_querier.go │ │ └── user.sql.go │ │ ├── message.go │ │ ├── pubsub.go │ │ └── service.go ├── docs │ └── assets │ │ ├── bots.gif │ │ ├── deploy.png │ │ ├── discord-message.gif │ │ ├── hero.png │ │ ├── overview.png │ │ ├── slack-message.gif │ │ └── system-design.png ├── encore.app ├── example-initial-setup.json ├── go.mod ├── go.sum ├── llm │ ├── provider │ │ ├── gemini │ │ │ ├── config.cue │ │ │ └── gemini.go │ │ ├── openai │ │ │ ├── config.cue │ │ │ └── openai.go │ │ └── provider.go │ └── service │ │ ├── client │ │ ├── client.go │ │ ├── gemini │ │ │ └── client.go │ │ └── openai │ │ │ └── client.go │ │ ├── prompts.go │ │ ├── prompts │ │ ├── avatar.txt │ │ ├── continue_chat.txt │ │ ├── create_persona.txt │ │ ├── goodbye.txt │ │ ├── intro.txt │ │ ├── persona.txt │ │ ├── prepopulate.txt │ │ └── response.txt │ │ ├── pubsub.go │ │ └── service.go ├── pkg │ └── fns │ │ ├── fns.go │ │ └── fns_test.go ├── proxy │ └── proxy.go └── sqlc.yaml ├── assemblyai-starter ├── .gitignore ├── README.md ├── backend │ ├── config.cue │ ├── db.go │ ├── migrations │ │ └── 1_create_tables.up.sql │ └── transcript.go ├── encore.app ├── frontend │ ├── .gitignore │ ├── dist │ │ ├── assets │ │ │ ├── index.08b05076.css │ │ │ └── index.4f8dd65b.js │ │ └── index.html │ ├── frontend.go │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── Badge.tsx │ │ │ ├── Spinner.tsx │ │ │ ├── StatusBadge.tsx │ │ │ ├── TranscriptDetails.tsx │ │ │ ├── TranscriptList.tsx │ │ │ ├── UploadAudioForm.tsx │ │ │ └── UserIcon.tsx │ │ ├── index.css │ │ ├── lib │ │ │ └── client.ts │ │ └── main.tsx │ ├── tailwind.config.cjs │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── go.mod └── go.sum ├── auth0-react-sdk ├── .gitignore ├── README.md ├── backend │ ├── admin │ │ └── admin.go │ └── auth │ │ ├── auth-config.cue │ │ └── auth.go ├── encore.app ├── frontend │ ├── .env │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components │ │ │ ├── AdminDashboard.tsx │ │ │ ├── IndexPage.css │ │ │ ├── IndexPage.tsx │ │ │ └── LoginStatus.tsx │ │ ├── index.css │ │ ├── lib │ │ │ ├── client.ts │ │ │ └── getRequestClient.ts │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vercel.json │ └── vite.config.ts ├── go.mod └── go.sum ├── auth0 ├── .gitignore ├── README.md ├── backend │ └── auth │ │ ├── auth-config.cue │ │ ├── auth.go │ │ └── authenticator.go ├── encore.app ├── frontend │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components │ │ │ ├── AdminDashboard.tsx │ │ │ ├── IndexPage.css │ │ │ ├── IndexPage.tsx │ │ │ └── LoginStatus.tsx │ │ ├── index.css │ │ ├── lib │ │ │ ├── auth.ts │ │ │ ├── client.ts │ │ │ └── getRequestClient.ts │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vercel.json │ └── vite.config.ts ├── go.mod └── go.sum ├── bits ├── elevenlabs │ ├── README.md │ └── elevenlabs.go ├── pexels │ ├── README.md │ ├── collection.go │ ├── pexels.go │ ├── photo.go │ └── video.go └── sendgrid │ ├── README.md │ └── sendgrid.go ├── booking-system ├── .gitignore ├── README.md ├── booking │ ├── availability.go │ ├── booking.go │ ├── db │ │ ├── db.go │ │ ├── migrations │ │ │ ├── 1_create_tables.up.sql │ │ │ └── 2_initial_availability.up.sql │ │ ├── models.go │ │ ├── query.sql │ │ └── query.sql.go │ ├── helpers.go │ ├── slots.go │ └── sqlc.yaml ├── encore.app ├── example-initial-setup.json ├── frontend │ ├── .gitignore │ ├── dist │ │ ├── assets │ │ │ ├── index.31d647e5.js │ │ │ └── index.9ac5c605.css │ │ ├── index.html │ │ └── unavailable-bg.svg │ ├── frontend.go │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ └── unavailable-bg.svg │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── AdminLayout.tsx │ │ │ ├── BookingModal.tsx │ │ │ ├── EventDetails.tsx │ │ │ ├── HeaderNav.tsx │ │ │ ├── Modal.tsx │ │ │ ├── ScheduledEventModal.tsx │ │ │ ├── calendar │ │ │ │ ├── BookableEvents.tsx │ │ │ │ ├── CalendarHourRows.tsx │ │ │ │ ├── CalendarTimeIndicator.tsx │ │ │ │ ├── DayViewEventGrid.tsx │ │ │ │ ├── DayViewHeader.tsx │ │ │ │ ├── MonthViewCalendar.tsx │ │ │ │ ├── ScheduledEvents.tsx │ │ │ │ ├── WeekViewAvailability.tsx │ │ │ │ ├── WeekViewDayDividers.tsx │ │ │ │ ├── WeekViewDaysRow.tsx │ │ │ │ ├── WeekViewEventGrid.tsx │ │ │ │ └── WeekViewHeader.tsx │ │ │ └── pages │ │ │ │ ├── AdminCalendarPage.tsx │ │ │ │ ├── AvailabilitySettingsPage.tsx │ │ │ │ ├── BookingCalendarPage.tsx │ │ │ │ └── LoginPage.tsx │ │ ├── index.css │ │ ├── lib │ │ │ ├── adminReducer.tsx │ │ │ ├── api.ts │ │ │ ├── bookingReducer.tsx │ │ │ ├── client.ts │ │ │ ├── getCurrentUTCDate.ts │ │ │ ├── getRequestClient.ts │ │ │ ├── getUTCDateFromISO.ts │ │ │ └── scrollToTime.ts │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tailwind.config.cjs │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── go.mod ├── go.sum ├── sendgrid │ └── sendgrid.go └── user │ └── auth.go ├── clerk-remix ├── .gitignore ├── README.md ├── backend │ ├── admin │ │ └── admin.go │ └── auth │ │ └── auth.go ├── encore.app ├── frontend │ ├── .env.example │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── app │ │ ├── entry.client.tsx │ │ ├── entry.server.tsx │ │ ├── lib │ │ │ ├── client.ts │ │ │ └── getRequestClient.ts │ │ ├── root.tsx │ │ ├── routes │ │ │ ├── _index.tsx │ │ │ ├── admin-dashboard.tsx │ │ │ ├── sign-in.$.tsx │ │ │ └── sign-up.$.tsx │ │ └── tailwind.css │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ └── favicon.ico │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── vite.config.ts ├── go.mod └── go.sum ├── clerk ├── .gitignore ├── README.md ├── backend │ ├── admin │ │ └── admin.go │ └── auth │ │ └── auth.go ├── encore.app ├── frontend │ ├── .env │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components │ │ │ ├── AdminDashboard.tsx │ │ │ ├── IndexPage.css │ │ │ └── IndexPage.tsx │ │ ├── index.css │ │ ├── lib │ │ │ ├── client.ts │ │ │ └── getRequestClient.ts │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vercel.json │ └── vite.config.ts ├── go.mod └── go.sum ├── cli-templates.json ├── cli-tutorials.json ├── firebase-auth ├── .gitignore ├── README.md ├── backend │ ├── admin │ │ └── admin.go │ └── auth │ │ └── auth.go ├── encore.app ├── frontend │ ├── .env │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components │ │ │ ├── AdminDashboard.tsx │ │ │ ├── IndexPage.css │ │ │ ├── IndexPage.tsx │ │ │ ├── Login.tsx │ │ │ └── Signup.tsx │ │ ├── index.css │ │ ├── lib │ │ │ ├── client.ts │ │ │ ├── firebase.tsx │ │ │ └── getRequestClient.ts │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vercel.json │ └── vite.config.ts ├── go.mod └── go.sum ├── graphql ├── .gitignore ├── README.md ├── encore.app ├── go.mod ├── go.sum ├── gqlgen.yml ├── graphql │ ├── generated │ │ └── generated.go │ ├── graphql.go │ ├── model │ │ └── model.go │ ├── resolver.go │ ├── tools.go │ ├── url.graphqls │ └── url.resolvers.go └── url │ ├── migrations │ └── 1_create_tables.up.sql │ ├── url.go │ └── url_test.go ├── hello-world ├── .gitignore ├── README.md ├── encore.app ├── go.mod ├── go.sum └── hello │ ├── hello.go │ └── hello_test.go ├── logto-react-sdk ├── .gitignore ├── README.md ├── backend │ ├── api │ │ └── api.go │ └── auth │ │ ├── auth-config.cue │ │ └── auth.go ├── encore.app ├── frontend │ ├── .gitignore │ ├── eslint.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── Layout.tsx │ │ │ └── Navigation.tsx │ │ ├── config │ │ │ └── logto.ts │ │ ├── main.tsx │ │ ├── pages │ │ │ ├── Callback.tsx │ │ │ ├── Home.tsx │ │ │ └── ProtectedResource.tsx │ │ ├── styles.css │ │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── go.mod └── go.sum ├── meeting-notes ├── .github │ └── workflows │ │ └── node.yml ├── .gitignore ├── README.md ├── encore.app ├── example-initial-setup.json ├── frontend │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── client.ts │ │ ├── components │ │ │ ├── App.tsx │ │ │ ├── CoverSelector.tsx │ │ │ ├── MarkdownEditor.tsx │ │ │ └── SharingModal.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── go.mod ├── go.sum ├── images │ └── demo.gif ├── note │ ├── migrations │ │ └── 1_create_tables.up.sql │ └── note.go └── pexels │ └── pexels.go ├── nextjs-auth0-starter ├── README.md ├── backend │ ├── auth │ │ ├── auth.go │ │ ├── authenticator.go │ │ └── encore.cue │ └── user │ │ └── user.go ├── encore.app ├── frontend │ ├── .eslintrc.json │ ├── app │ │ ├── auth │ │ │ ├── login │ │ │ │ └── route.ts │ │ │ └── logout │ │ │ │ └── route.ts │ │ ├── callback │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── lib │ │ │ ├── client.ts │ │ │ └── getRequestClient.ts │ │ ├── page.module.css │ │ ├── page.tsx │ │ └── users │ │ │ ├── [id] │ │ │ └── page.tsx │ │ │ ├── error.tsx │ │ │ └── page.tsx │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── go.mod └── go.sum ├── nextjs-starter ├── .gitignore ├── README.md ├── backend │ ├── auth │ │ └── auth.go │ └── user │ │ └── user.go ├── encore.app ├── frontend │ ├── .eslintrc.json │ ├── .gitignore │ ├── app │ │ ├── auth │ │ │ ├── login │ │ │ │ └── route.ts │ │ │ └── logout │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── lib │ │ │ ├── client.ts │ │ │ └── getRequestClient.ts │ │ ├── page.module.css │ │ ├── page.tsx │ │ └── users │ │ │ ├── [id] │ │ │ └── page.tsx │ │ │ ├── error.tsx │ │ │ └── page.tsx │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── go.mod └── go.sum ├── react-starter ├── .gitignore ├── README.md ├── backend │ ├── admin │ │ └── admin.go │ └── auth │ │ └── auth.go ├── encore.app ├── frontend │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── AdminDashboard.tsx │ │ │ ├── IndexPage.css │ │ │ ├── IndexPage.tsx │ │ │ ├── LoginPage.css │ │ │ └── LoginPage.tsx │ │ ├── index.css │ │ ├── lib │ │ │ ├── auth.ts │ │ │ ├── client.ts │ │ │ └── getRequestClient.ts │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vercel.json │ └── vite.config.ts ├── go.mod └── go.sum ├── slack-bot ├── .gitignore ├── README.md ├── encore.app ├── go.mod ├── go.sum └── slack │ └── slack.go ├── sql-database ├── .gitignore ├── README.md ├── encore.app ├── go.mod ├── go.sum └── hello │ ├── hello.go │ ├── hello_test.go │ └── migrations │ └── 1_create_table.up.sql ├── sqlc-database ├── .gitignore ├── README.md ├── encore.app ├── go.mod ├── go.sum ├── hello │ ├── hello.go │ ├── hello_test.go │ ├── migrations │ │ └── 1_create_table.up.sql │ └── store │ │ ├── db.go │ │ ├── models.go │ │ ├── querier.go │ │ ├── queries.sql.go │ │ └── queries │ │ └── queries.sql └── sqlc.yaml ├── trello-clone ├── .gitignore ├── README.md ├── board │ ├── board.go │ ├── column.go │ ├── column_test.go │ └── migrations │ │ └── 1_create_tables.up.sql ├── card │ ├── card.go │ ├── card_test.go │ └── migrations │ │ └── 1_create_table.up.sql ├── encore.app ├── go.mod ├── go.sum └── images │ └── encore-flow.png ├── ts ├── .prettierrc ├── ai-chat │ ├── .gitignore │ ├── README.md │ ├── bot │ │ ├── bot.ts │ │ ├── encore.service.ts │ │ ├── migrations │ │ │ └── 001_create_tables.up.sql │ │ └── proxy.ts │ ├── chat │ │ ├── provider │ │ │ ├── provider.ts │ │ │ └── slack │ │ │ │ ├── bot-manifest.json │ │ │ │ ├── encore.service.ts │ │ │ │ └── slack.ts │ │ └── service │ │ │ ├── chat.ts │ │ │ ├── clients.ts │ │ │ ├── encore.service.ts │ │ │ ├── migrations │ │ │ └── 001_create_tables.up.sql │ │ │ └── topics.ts │ ├── docs │ │ └── assets │ │ │ ├── deploy.png │ │ │ ├── overview.png │ │ │ ├── slack-message.gif │ │ │ └── system-design.png │ ├── encore.app │ ├── example-initial-setup.json │ ├── llm │ │ ├── provider │ │ │ ├── claude │ │ │ │ ├── claude.ts │ │ │ │ └── encore.service.ts │ │ │ ├── openai │ │ │ │ ├── encore.service.ts │ │ │ │ └── openai.ts │ │ │ └── provider.ts │ │ └── service │ │ │ ├── clients.ts │ │ │ ├── encore.service.ts │ │ │ ├── llm.ts │ │ │ ├── prompts.ts │ │ │ └── topics.ts │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── utils │ │ └── utils.ts ├── auth0-react-sdk │ ├── .gitignore │ ├── README.md │ ├── admin │ │ ├── admin.ts │ │ └── encore.service.ts │ ├── auth │ │ ├── auth.ts │ │ ├── config.ts │ │ └── encore.service.ts │ ├── encore.app │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── favicon.ico │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ │ ├── AdminDashboard.tsx │ │ │ │ ├── IndexPage.css │ │ │ │ ├── IndexPage.tsx │ │ │ │ └── LoginStatus.tsx │ │ │ ├── index.css │ │ │ ├── lib │ │ │ │ ├── client.ts │ │ │ │ └── getRequestClient.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ ├── vercel.json │ │ └── vite.config.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── clerk-simple │ ├── .gitignore │ ├── README.md │ ├── auth │ │ ├── clerk.ts │ │ ├── encore.service.ts │ │ ├── handler.ts │ │ └── webhooks.ts │ ├── encore.app │ ├── frontend │ │ ├── assets │ │ │ └── index.html │ │ ├── encore.service.ts │ │ └── frontend.ts │ ├── package.json │ ├── tsconfig.json │ └── user │ │ ├── db.ts │ │ ├── encore.service.ts │ │ ├── migrations │ │ └── 1_create_user_profile.up.sql │ │ └── profile.ts ├── clerk │ ├── .gitignore │ ├── README.md │ ├── admin │ │ ├── admin.ts │ │ └── encore.service.ts │ ├── auth │ │ ├── auth.ts │ │ ├── config.ts │ │ └── encore.service.ts │ ├── encore.app │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── favicon.ico │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ │ ├── AdminDashboard.tsx │ │ │ │ ├── IndexPage.css │ │ │ │ └── IndexPage.tsx │ │ │ ├── index.css │ │ │ ├── lib │ │ │ │ ├── client.ts │ │ │ │ └── getRequestClient.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ ├── vercel.json │ │ └── vite.config.ts │ ├── package.json │ └── tsconfig.json ├── daytona │ ├── README.md │ ├── encore.app │ ├── execution │ │ ├── advanced.ts │ │ ├── ai-generate.ts │ │ ├── daytona.ts │ │ ├── db.ts │ │ ├── encore.service.ts │ │ ├── execute.ts │ │ ├── files.ts │ │ └── migrations │ │ │ └── 1_create_executions.up.sql │ ├── frontend │ │ ├── app.js │ │ ├── encore.service.ts │ │ ├── index.html │ │ ├── static.ts │ │ └── styles.css │ ├── package.json │ └── tsconfig.json ├── drizzle │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── users │ │ ├── database.ts │ │ ├── drizzle.config.ts │ │ ├── migrations │ │ ├── 0000_superb_komodo.sql │ │ └── meta │ │ │ ├── 0000_snapshot.json │ │ │ └── _journal.json │ │ ├── schema.ts │ │ ├── user.controller.ts │ │ ├── user.interface.ts │ │ ├── user.service.ts │ │ └── utils.ts ├── elevenlabs │ ├── .gitignore │ ├── README.md │ ├── audio.png │ ├── elevenlabs │ │ ├── elevenlabs.ts │ │ └── encore.service.ts │ ├── encore.app │ ├── frontend │ │ ├── .gitignore │ │ ├── dist │ │ │ ├── assets │ │ │ │ ├── index-aeRp5MkZ.js │ │ │ │ └── poweredby-BmXagwOe.png │ │ │ └── index.html │ │ ├── encore.service.ts │ │ ├── frontend.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── ClientContext.ts │ │ │ ├── HistoryPanel.tsx │ │ │ ├── PromptInput.tsx │ │ │ ├── RangeSlider.tsx │ │ │ ├── SlideOver.tsx │ │ │ ├── Suggestions.tsx │ │ │ ├── VoicesPanel.tsx │ │ │ ├── assets │ │ │ │ ├── github.svg │ │ │ │ └── poweredby.png │ │ │ ├── audioMotionSettings.ts │ │ │ ├── client.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── voices.png ├── empty │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── expressjs-migration │ ├── README.md │ ├── encore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── another-service │ │ │ ├── encore.service.ts │ │ │ └── foo.ts │ │ ├── encore.app │ │ ├── example-service │ │ │ ├── assets │ │ │ │ └── styles.css │ │ │ ├── auth-example.ts │ │ │ ├── database-example.ts │ │ │ ├── encore.service.ts │ │ │ ├── error-handling-example.ts │ │ │ ├── get-request-example.ts │ │ │ ├── logging-example.ts │ │ │ ├── microservice-example.ts │ │ │ ├── migrations │ │ │ │ └── 1_create_tables.up.sql │ │ │ ├── post-request-example.ts │ │ │ ├── static-assets-example.ts │ │ │ ├── template-example.ts │ │ │ ├── test │ │ │ │ └── route.test.ts │ │ │ └── validation-example.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ ├── express │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ └── styles.css │ │ ├── docker │ │ │ └── postgresql │ │ │ │ ├── Dockerfile.postgis │ │ │ │ ├── docker-compose.yml │ │ │ │ └── init.sql │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── auth-example.ts │ │ │ ├── database-example.ts │ │ │ ├── error-handling-example.ts │ │ │ ├── get-request-example.ts │ │ │ ├── index.ts │ │ │ ├── microservice-example.ts │ │ │ ├── post-request-example.ts │ │ │ ├── static-assets-example.ts │ │ │ ├── template-example.ts │ │ │ ├── test │ │ │ │ └── route.test.ts │ │ │ └── validation-example.ts │ │ ├── tsconfig.json │ │ └── views │ │ │ └── index.pug │ ├── forklift-migration │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ │ ├── app.ts │ │ │ ├── encore.service.ts │ │ │ └── express-app.ts │ │ ├── encore.app │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── views │ │ │ └── index.pug │ └── youtube.png ├── file-upload │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── upload │ │ ├── encore.service.ts │ │ ├── migrations │ │ └── 1_create_tables.up.sql │ │ └── upload.ts ├── gpt-functions │ ├── .gitignore │ ├── README.md │ ├── book │ │ ├── book.ts │ │ ├── db.ts │ │ ├── encore.service.ts │ │ └── gpt.ts │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── graphql │ ├── .gitignore │ ├── README.md │ ├── book │ │ ├── book.ts │ │ └── encore.service.ts │ ├── codegen.yml │ ├── encore.app │ ├── graphql │ │ ├── __generated__ │ │ │ └── resolvers-types.ts │ │ ├── encore.service.ts │ │ ├── graphql.ts │ │ └── resolvers │ │ │ ├── index.ts │ │ │ ├── mutations.ts │ │ │ └── queries.ts │ ├── package-lock.json │ ├── package.json │ ├── schema.graphql │ └── tsconfig.json ├── hello-world │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── hello │ │ ├── encore.service.ts │ │ ├── hello.test.ts │ │ └── hello.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── introduction │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── example-initial-setup.json │ ├── foo │ │ └── foo.ts │ ├── hello │ │ ├── auth.ts │ │ ├── encore.service.ts │ │ └── hello.ts │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── vite.config.js ├── knex │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── users │ │ ├── database.ts │ │ ├── migrations │ │ └── 1_create_table.up.sql │ │ ├── user.controller.ts │ │ ├── user.interface.ts │ │ ├── user.service.ts │ │ └── utils.ts ├── langfuse-openrouter │ ├── .gitignore │ ├── README.md │ ├── ai │ │ ├── chat.ts │ │ ├── clients.ts │ │ ├── costs.ts │ │ ├── db.ts │ │ ├── encore.service.ts │ │ ├── feedback.ts │ │ └── migrations │ │ │ └── 1_create_chat_history.up.sql │ ├── encore.app │ ├── frontend │ │ ├── app.js │ │ ├── encore.service.ts │ │ ├── index.html │ │ ├── static.ts │ │ └── styles.css │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── mcp-example │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ ├── run-mcp-test.sh │ │ └── test-mcp.js │ ├── src │ │ ├── config │ │ │ └── api.ts │ │ ├── index.ts │ │ ├── services │ │ │ └── weather │ │ │ │ ├── weather.controller.ts │ │ │ │ ├── weather.repository.ts │ │ │ │ └── weather.service.ts │ │ └── types │ │ │ └── weather.types.ts │ ├── test-mcp.js │ ├── test-mcp.sh │ ├── test │ │ ├── mcp-client.test.ts │ │ ├── weather.integration.test.ts │ │ └── weather.test.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── middleware │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── user │ │ ├── authentication.ts │ │ ├── encore.service.ts │ │ ├── migrations │ │ └── 1_create_table.up.sql │ │ ├── storage.ts │ │ └── users.ts ├── nestjs │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.module.ts │ │ ├── applicationContext.ts │ │ ├── auth │ │ │ └── authHandler.ts │ │ ├── cats │ │ │ ├── cats.controller.ts │ │ │ ├── cats.module.ts │ │ │ ├── cats.providers.ts │ │ │ ├── cats.service.ts │ │ │ ├── dto │ │ │ │ └── create-cat.dto.ts │ │ │ └── interfaces │ │ │ │ └── cat.interface.ts │ │ ├── core │ │ │ ├── database.module.ts │ │ │ ├── database.providers.ts │ │ │ └── migrations │ │ │ │ └── 1_create_tables.up.sql │ │ └── encore.service.ts │ └── tsconfig.json ├── nextjs-starter │ ├── .gitignore │ ├── README.md │ ├── api │ │ ├── admin.ts │ │ ├── auth.ts │ │ └── encore.service.ts │ ├── app │ │ ├── admin │ │ │ ├── error.tsx │ │ │ └── page.tsx │ │ ├── auth │ │ │ ├── login │ │ │ │ └── route.ts │ │ │ ├── logout │ │ │ │ └── route.ts │ │ │ └── unauthenticated │ │ │ │ └── page.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── lib │ │ │ ├── client.ts │ │ │ └── getRequestClient.ts │ │ └── page.tsx │ ├── encore.app │ ├── next.config.ts │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── tsconfig.vercel.json ├── polar-file-sharing │ ├── .gitignore │ ├── README.md │ ├── auth │ │ ├── auth.ts │ │ ├── better-auth.ts │ │ ├── db.ts │ │ ├── encore.service.ts │ │ ├── handler.ts │ │ ├── migrations │ │ │ └── 1_create_auth_tables.up.sql │ │ └── schema.ts │ ├── encore.app │ ├── files │ │ ├── bucket.ts │ │ ├── db.ts │ │ ├── download.ts │ │ ├── encore.service.ts │ │ ├── list.ts │ │ ├── migrations │ │ │ └── 1_create_files.up.sql │ │ └── upload.ts │ ├── frontend │ │ ├── assets │ │ │ └── index.html │ │ ├── encore.service.ts │ │ └── frontend.ts │ ├── package-lock.json │ ├── package.json │ ├── payments │ │ ├── checkout.ts │ │ ├── db.ts │ │ ├── encore.service.ts │ │ ├── migrations │ │ │ ├── 1_create_subscriptions.up.sql │ │ │ └── 2_add_user_id_to_customers.up.sql │ │ ├── polar.ts │ │ ├── products.ts │ │ ├── subscriptions.ts │ │ └── webhooks.ts │ └── tsconfig.json ├── prisma │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── prisma.config.ts │ ├── tsconfig.json │ └── users │ │ ├── .gitignore │ │ ├── database.ts │ │ ├── encore.service.ts │ │ ├── prisma │ │ ├── client.ts │ │ ├── generated │ │ │ ├── client.ts │ │ │ ├── commonInputTypes.ts │ │ │ ├── enums.ts │ │ │ ├── internal │ │ │ │ ├── class.ts │ │ │ │ └── prismaNamespace.ts │ │ │ ├── models.ts │ │ │ └── models │ │ │ │ └── User.ts │ │ ├── migrations │ │ │ ├── 20241111100339_init │ │ │ │ └── migration.sql │ │ │ └── migration_lock.toml │ │ └── schema.prisma │ │ ├── user.controller.ts │ │ ├── user.interface.ts │ │ ├── user.model.ts │ │ ├── user.service.ts │ │ └── utils.ts ├── react-starter │ ├── .gitignore │ ├── README.md │ ├── api │ │ ├── counter.ts │ │ └── encore.service.ts │ ├── encore.app │ ├── eslint.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── App.tsx │ │ ├── index.css │ │ ├── lib │ │ │ └── client.ts │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── vite.config.ts ├── replicate-image-generator │ ├── .gitignore │ ├── README.md │ ├── ai │ │ ├── encore.service.ts │ │ ├── generate.ts │ │ ├── replicate.ts │ │ └── storage.ts │ ├── encore.app │ ├── frontend │ │ ├── assets │ │ │ └── index.html │ │ ├── encore.service.ts │ │ └── frontend.ts │ ├── package.json │ └── tsconfig.json ├── resend │ ├── README.md │ ├── email │ │ ├── db.ts │ │ ├── encore.service.ts │ │ ├── migrations │ │ │ └── 1_create_emails.up.sql │ │ ├── resend.ts │ │ ├── send.ts │ │ ├── templates │ │ │ ├── password-reset.tsx │ │ │ └── welcome.tsx │ │ └── webhooks.ts │ ├── encore.app │ ├── package.json │ └── tsconfig.json ├── saas-starter │ ├── README.md │ ├── backend │ │ ├── .gitignore │ │ ├── admin │ │ │ ├── dashboard.test.ts │ │ │ └── dashboard.ts │ │ ├── auth │ │ │ └── auth_handler.ts │ │ ├── config.ts │ │ ├── encore.app │ │ ├── globals.d.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── subscription │ │ │ ├── db.ts │ │ │ ├── migrations │ │ │ │ └── 1_add_subscription.up.sql │ │ │ └── stripe.ts │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ ├── example-initial-setup.json │ └── frontend │ │ ├── .gitignore │ │ ├── app │ │ ├── (auth) │ │ │ ├── select-organization │ │ │ │ └── page.tsx │ │ │ └── sign-in │ │ │ │ └── [[...sign-in]] │ │ │ │ └── page.tsx │ │ ├── (landing) │ │ │ ├── company │ │ │ │ └── page.tsx │ │ │ ├── header.tsx │ │ │ ├── img1.jpg │ │ │ ├── img2.jpg │ │ │ ├── img3.jpg │ │ │ ├── img4.jpg │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── pricing │ │ │ │ └── page.tsx │ │ ├── dashboard │ │ │ ├── app-sidebar.tsx │ │ │ ├── client-side-data.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ ├── server-side-data.tsx │ │ │ ├── settings │ │ │ │ └── page.tsx │ │ │ └── subscription │ │ │ │ └── page.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── query-client-provider.tsx │ │ ├── components.json │ │ ├── components │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ │ ├── hooks │ │ └── use-mobile.ts │ │ ├── lib │ │ ├── api │ │ │ ├── client-side.ts │ │ │ ├── encore-client.ts │ │ │ └── server-side.ts │ │ ├── cn.ts │ │ ├── env │ │ │ ├── client-side.ts │ │ │ └── server-side.ts │ │ └── plans.ts │ │ ├── middleware.ts │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── postcss.config.mjs │ │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ │ └── tsconfig.json ├── sentry-demo │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package.json │ ├── services │ │ └── observability │ │ │ ├── api.ts │ │ │ └── encore.service.ts │ └── tsconfig.json ├── sequelize │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── users │ │ ├── database.ts │ │ ├── encore.service.ts │ │ ├── migrations │ │ └── 1_create_users_table.up.sql │ │ ├── user.controller.ts │ │ ├── user.interface.ts │ │ ├── user.model.ts │ │ ├── user.service.ts │ │ └── utils.ts ├── simple-event-driven │ ├── .gitignore │ ├── README.md │ ├── email │ │ ├── email.ts │ │ └── encore.service.ts │ ├── encore-flow.png │ ├── encore.app │ ├── hello │ │ ├── encore.service.ts │ │ ├── hello.test.ts │ │ └── hello.ts │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ ├── user │ │ ├── encore.service.ts │ │ ├── migrations │ │ │ └── 1_create_tables.up.sql │ │ └── user.ts │ └── vitest.config.ts ├── slack-bot │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── slack │ │ ├── encore.service.ts │ │ └── slack.ts │ └── tsconfig.json ├── socket-io │ ├── README.md │ ├── chat │ │ ├── chat.ts │ │ ├── encore.service.ts │ │ └── index.html │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── static-files │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── static │ │ ├── assets │ │ │ ├── index.html │ │ │ ├── not_found.html │ │ │ └── styles.css │ │ ├── encore.service.ts │ │ └── static.ts │ └── tsconfig.json ├── streaming-chat │ ├── .gitignore │ ├── README.md │ ├── chat-room.png │ ├── chat │ │ ├── chat.test.ts │ │ ├── chat.ts │ │ └── encore.service.ts │ ├── encore.app │ ├── frontend │ │ ├── dist │ │ │ ├── assets │ │ │ │ ├── index-37bfce13.js │ │ │ │ └── index-e22bcfaf.css │ │ │ ├── favicon.ico │ │ │ └── index.html │ │ ├── encore.service.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public │ │ │ └── favicon.ico │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── components │ │ │ │ ├── Chat.tsx │ │ │ │ ├── IndexPage.tsx │ │ │ │ └── SendIcon.tsx │ │ │ ├── index.css │ │ │ ├── lib │ │ │ │ ├── client.ts │ │ │ │ └── getRequestClient.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── static.ts │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── vitest.config.ts ├── streaming │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── frontend │ │ ├── dist │ │ │ ├── assets │ │ │ │ ├── index-fa00a08b.css │ │ │ │ └── index-ff240753.js │ │ │ ├── favicon.ico │ │ │ └── index.html │ │ ├── encore.service.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public │ │ │ └── favicon.ico │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ │ ├── Button.tsx │ │ │ │ ├── IndexPage.tsx │ │ │ │ ├── SendIcon.tsx │ │ │ │ ├── StreamInExample.tsx │ │ │ │ ├── StreamInOutExample.tsx │ │ │ │ └── StreamOutExample.tsx │ │ │ ├── index.css │ │ │ ├── lib │ │ │ │ ├── client.ts │ │ │ │ └── getRequestClient.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── static.ts │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── package-lock.json │ ├── package.json │ ├── streaming │ │ ├── encore.service.ts │ │ ├── streamIn.ts │ │ ├── streamInOut.ts │ │ └── streamOut.ts │ └── tsconfig.json ├── supabase │ ├── .gitignore │ ├── README.md │ ├── admin │ │ ├── admin.ts │ │ └── encore.service.ts │ ├── auth │ │ ├── auth.ts │ │ └── encore.service.ts │ ├── encore.app │ ├── frontend │ │ ├── .gitignore │ │ ├── encore.service.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ │ └── favicon.ico │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── index.css │ │ │ ├── lib │ │ │ │ ├── client.ts │ │ │ │ ├── getRequestClient.ts │ │ │ │ └── supabase.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ ├── vercel.json │ │ └── vite.config.ts │ ├── package.json │ └── tsconfig.json ├── template-engine │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── template │ │ ├── assets │ │ │ └── styles.css │ │ ├── template.ts │ │ └── views │ │ │ ├── about │ │ │ └── contact.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ └── person.html │ └── tsconfig.json ├── uptime │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── example-initial-setup.json │ ├── frontend │ │ ├── .gitignore │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── lib │ │ │ │ └── client.ts │ │ │ ├── page.tsx │ │ │ └── providers.tsx │ │ ├── encore.service.ts │ │ ├── frontend.ts │ │ ├── next.config.mjs │ │ └── tsconfig.json │ ├── monitor │ │ ├── check.test.ts │ │ ├── check.ts │ │ ├── encore.service.ts │ │ ├── migrations │ │ │ └── 1_create_tables.up.sql │ │ ├── ping.test.ts │ │ ├── ping.ts │ │ └── status.ts │ ├── package-lock.json │ ├── package.json │ ├── site │ │ ├── encore.service.ts │ │ ├── migrations │ │ │ └── 1_create_tables.up.sql │ │ └── site.ts │ ├── slack │ │ ├── encore.service.ts │ │ └── slack.ts │ ├── tsconfig.json │ └── vite.config.ts └── url-shortener │ ├── .gitignore │ ├── README.md │ ├── encore.app │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ ├── url │ ├── encore.service.ts │ ├── migrations │ │ └── 1_create_tables.up.sql │ ├── url.test.ts │ └── url.ts │ └── vite.config.ts ├── uptime ├── .gitignore ├── README.md ├── encore.app ├── example-initial-setup.json ├── frontend │ ├── .babelrc │ ├── .gitignore │ ├── dist │ │ ├── assets │ │ │ ├── index.62171e89.css │ │ │ └── index.7205226b.js │ │ └── index.html │ ├── frontend.go │ ├── index.html │ ├── jest.config.js │ ├── jest.setup.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── client.ts │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tailwind.config.cjs │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── go.mod ├── go.sum ├── images │ ├── encore-flow.png │ └── frontend.png ├── monitor │ ├── check.go │ ├── migrations │ │ └── 1_create_tables.up.sql │ ├── ping.go │ ├── ping_test.go │ └── status.go ├── site │ ├── migrations │ │ ├── 1_create_tables.up.sql │ │ └── 2_url_unique.up.sql │ ├── site.go │ └── site_test.go └── slack │ ├── slack.go │ └── slack_test.go ├── url-shortener ├── .gitignore ├── README.md ├── encore.app ├── go.mod ├── go.sum └── url │ ├── migrations │ └── 1_create_tables.up.sql │ ├── url.go │ └── url_test.go └── websocket-echo-server ├── .gitignore ├── cmd └── example-client │ └── main.go ├── echo └── echo.go ├── encore.app ├── go.mod └── go.sum /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/README.md -------------------------------------------------------------------------------- /ai-chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/.gitignore -------------------------------------------------------------------------------- /ai-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/README.md -------------------------------------------------------------------------------- /ai-chat/bot/db/avatar.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/bot/db/avatar.sql.go -------------------------------------------------------------------------------- /ai-chat/bot/db/bot.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/bot/db/bot.sql.go -------------------------------------------------------------------------------- /ai-chat/bot/db/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/bot/db/extension.go -------------------------------------------------------------------------------- /ai-chat/bot/db/queries/avatar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/bot/db/queries/avatar.sql -------------------------------------------------------------------------------- /ai-chat/bot/db/queries/bot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/bot/db/queries/bot.sql -------------------------------------------------------------------------------- /ai-chat/bot/db/sqlc_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/bot/db/sqlc_db.go -------------------------------------------------------------------------------- /ai-chat/bot/db/sqlc_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/bot/db/sqlc_models.go -------------------------------------------------------------------------------- /ai-chat/bot/db/sqlc_querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/bot/db/sqlc_querier.go -------------------------------------------------------------------------------- /ai-chat/bot/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/bot/service.go -------------------------------------------------------------------------------- /ai-chat/chat/provider/local/chat/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/provider/local/chat/hub.go -------------------------------------------------------------------------------- /ai-chat/chat/provider/local/config.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/provider/local/config.cue -------------------------------------------------------------------------------- /ai-chat/chat/provider/local/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/provider/local/service.go -------------------------------------------------------------------------------- /ai-chat/chat/provider/local/static/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /ai-chat/chat/provider/local/static/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ai-chat/chat/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/provider/provider.go -------------------------------------------------------------------------------- /ai-chat/chat/provider/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/provider/pubsub.go -------------------------------------------------------------------------------- /ai-chat/chat/provider/slack/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/provider/slack/service.go -------------------------------------------------------------------------------- /ai-chat/chat/service/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/channel.go -------------------------------------------------------------------------------- /ai-chat/chat/service/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/client/client.go -------------------------------------------------------------------------------- /ai-chat/chat/service/config.cue: -------------------------------------------------------------------------------- 1 | InitConversationIntervalMinutes: 20 -------------------------------------------------------------------------------- /ai-chat/chat/service/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/cron.go -------------------------------------------------------------------------------- /ai-chat/chat/service/db/channel.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/db/channel.sql.go -------------------------------------------------------------------------------- /ai-chat/chat/service/db/ids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/db/ids.go -------------------------------------------------------------------------------- /ai-chat/chat/service/db/message.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/db/message.sql.go -------------------------------------------------------------------------------- /ai-chat/chat/service/db/sqlc_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/db/sqlc_db.go -------------------------------------------------------------------------------- /ai-chat/chat/service/db/sqlc_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/db/sqlc_models.go -------------------------------------------------------------------------------- /ai-chat/chat/service/db/sqlc_querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/db/sqlc_querier.go -------------------------------------------------------------------------------- /ai-chat/chat/service/db/user.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/db/user.sql.go -------------------------------------------------------------------------------- /ai-chat/chat/service/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/message.go -------------------------------------------------------------------------------- /ai-chat/chat/service/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/pubsub.go -------------------------------------------------------------------------------- /ai-chat/chat/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/chat/service/service.go -------------------------------------------------------------------------------- /ai-chat/docs/assets/bots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/docs/assets/bots.gif -------------------------------------------------------------------------------- /ai-chat/docs/assets/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/docs/assets/deploy.png -------------------------------------------------------------------------------- /ai-chat/docs/assets/discord-message.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/docs/assets/discord-message.gif -------------------------------------------------------------------------------- /ai-chat/docs/assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/docs/assets/hero.png -------------------------------------------------------------------------------- /ai-chat/docs/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/docs/assets/overview.png -------------------------------------------------------------------------------- /ai-chat/docs/assets/slack-message.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/docs/assets/slack-message.gif -------------------------------------------------------------------------------- /ai-chat/docs/assets/system-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/docs/assets/system-design.png -------------------------------------------------------------------------------- /ai-chat/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/encore.app -------------------------------------------------------------------------------- /ai-chat/example-initial-setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/example-initial-setup.json -------------------------------------------------------------------------------- /ai-chat/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/go.mod -------------------------------------------------------------------------------- /ai-chat/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/go.sum -------------------------------------------------------------------------------- /ai-chat/llm/provider/gemini/config.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/provider/gemini/config.cue -------------------------------------------------------------------------------- /ai-chat/llm/provider/gemini/gemini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/provider/gemini/gemini.go -------------------------------------------------------------------------------- /ai-chat/llm/provider/openai/config.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/provider/openai/config.cue -------------------------------------------------------------------------------- /ai-chat/llm/provider/openai/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/provider/openai/openai.go -------------------------------------------------------------------------------- /ai-chat/llm/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/provider/provider.go -------------------------------------------------------------------------------- /ai-chat/llm/service/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/service/client/client.go -------------------------------------------------------------------------------- /ai-chat/llm/service/prompts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/service/prompts.go -------------------------------------------------------------------------------- /ai-chat/llm/service/prompts/avatar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/service/prompts/avatar.txt -------------------------------------------------------------------------------- /ai-chat/llm/service/prompts/goodbye.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/service/prompts/goodbye.txt -------------------------------------------------------------------------------- /ai-chat/llm/service/prompts/intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/service/prompts/intro.txt -------------------------------------------------------------------------------- /ai-chat/llm/service/prompts/persona.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/service/prompts/persona.txt -------------------------------------------------------------------------------- /ai-chat/llm/service/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/service/pubsub.go -------------------------------------------------------------------------------- /ai-chat/llm/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/llm/service/service.go -------------------------------------------------------------------------------- /ai-chat/pkg/fns/fns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/pkg/fns/fns.go -------------------------------------------------------------------------------- /ai-chat/pkg/fns/fns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/pkg/fns/fns_test.go -------------------------------------------------------------------------------- /ai-chat/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/proxy/proxy.go -------------------------------------------------------------------------------- /ai-chat/sqlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ai-chat/sqlc.yaml -------------------------------------------------------------------------------- /assemblyai-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/.gitignore -------------------------------------------------------------------------------- /assemblyai-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/README.md -------------------------------------------------------------------------------- /assemblyai-starter/backend/config.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/backend/config.cue -------------------------------------------------------------------------------- /assemblyai-starter/backend/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/backend/db.go -------------------------------------------------------------------------------- /assemblyai-starter/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/encore.app -------------------------------------------------------------------------------- /assemblyai-starter/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/frontend/.gitignore -------------------------------------------------------------------------------- /assemblyai-starter/frontend/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/frontend/frontend.go -------------------------------------------------------------------------------- /assemblyai-starter/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/frontend/index.html -------------------------------------------------------------------------------- /assemblyai-starter/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/frontend/src/App.tsx -------------------------------------------------------------------------------- /assemblyai-starter/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/go.mod -------------------------------------------------------------------------------- /assemblyai-starter/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/assemblyai-starter/go.sum -------------------------------------------------------------------------------- /auth0-react-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/.gitignore -------------------------------------------------------------------------------- /auth0-react-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/README.md -------------------------------------------------------------------------------- /auth0-react-sdk/backend/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/backend/admin/admin.go -------------------------------------------------------------------------------- /auth0-react-sdk/backend/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/backend/auth/auth.go -------------------------------------------------------------------------------- /auth0-react-sdk/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/encore.app -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/.env -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/.gitignore -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/index.html -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/package.json -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/src/App.css -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/src/App.tsx -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/src/index.css -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/src/main.tsx -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/tsconfig.json -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/vercel.json -------------------------------------------------------------------------------- /auth0-react-sdk/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/frontend/vite.config.ts -------------------------------------------------------------------------------- /auth0-react-sdk/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/go.mod -------------------------------------------------------------------------------- /auth0-react-sdk/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0-react-sdk/go.sum -------------------------------------------------------------------------------- /auth0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/.gitignore -------------------------------------------------------------------------------- /auth0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/README.md -------------------------------------------------------------------------------- /auth0/backend/auth/auth-config.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/backend/auth/auth-config.cue -------------------------------------------------------------------------------- /auth0/backend/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/backend/auth/auth.go -------------------------------------------------------------------------------- /auth0/backend/auth/authenticator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/backend/auth/authenticator.go -------------------------------------------------------------------------------- /auth0/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/encore.app -------------------------------------------------------------------------------- /auth0/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /auth0/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/.gitignore -------------------------------------------------------------------------------- /auth0/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/index.html -------------------------------------------------------------------------------- /auth0/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/package-lock.json -------------------------------------------------------------------------------- /auth0/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/package.json -------------------------------------------------------------------------------- /auth0/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/public/favicon.ico -------------------------------------------------------------------------------- /auth0/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/src/App.css -------------------------------------------------------------------------------- /auth0/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/src/App.tsx -------------------------------------------------------------------------------- /auth0/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/src/index.css -------------------------------------------------------------------------------- /auth0/frontend/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/src/lib/auth.ts -------------------------------------------------------------------------------- /auth0/frontend/src/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/src/lib/client.ts -------------------------------------------------------------------------------- /auth0/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/src/main.tsx -------------------------------------------------------------------------------- /auth0/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /auth0/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/tsconfig.json -------------------------------------------------------------------------------- /auth0/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /auth0/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/vercel.json -------------------------------------------------------------------------------- /auth0/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/frontend/vite.config.ts -------------------------------------------------------------------------------- /auth0/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/go.mod -------------------------------------------------------------------------------- /auth0/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/auth0/go.sum -------------------------------------------------------------------------------- /bits/elevenlabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/bits/elevenlabs/README.md -------------------------------------------------------------------------------- /bits/elevenlabs/elevenlabs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/bits/elevenlabs/elevenlabs.go -------------------------------------------------------------------------------- /bits/pexels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/bits/pexels/README.md -------------------------------------------------------------------------------- /bits/pexels/collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/bits/pexels/collection.go -------------------------------------------------------------------------------- /bits/pexels/pexels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/bits/pexels/pexels.go -------------------------------------------------------------------------------- /bits/pexels/photo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/bits/pexels/photo.go -------------------------------------------------------------------------------- /bits/pexels/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/bits/pexels/video.go -------------------------------------------------------------------------------- /bits/sendgrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/bits/sendgrid/README.md -------------------------------------------------------------------------------- /bits/sendgrid/sendgrid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/bits/sendgrid/sendgrid.go -------------------------------------------------------------------------------- /booking-system/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/.gitignore -------------------------------------------------------------------------------- /booking-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/README.md -------------------------------------------------------------------------------- /booking-system/booking/availability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/booking/availability.go -------------------------------------------------------------------------------- /booking-system/booking/booking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/booking/booking.go -------------------------------------------------------------------------------- /booking-system/booking/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/booking/db/db.go -------------------------------------------------------------------------------- /booking-system/booking/db/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/booking/db/models.go -------------------------------------------------------------------------------- /booking-system/booking/db/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/booking/db/query.sql -------------------------------------------------------------------------------- /booking-system/booking/db/query.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/booking/db/query.sql.go -------------------------------------------------------------------------------- /booking-system/booking/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/booking/helpers.go -------------------------------------------------------------------------------- /booking-system/booking/slots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/booking/slots.go -------------------------------------------------------------------------------- /booking-system/booking/sqlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/booking/sqlc.yaml -------------------------------------------------------------------------------- /booking-system/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/encore.app -------------------------------------------------------------------------------- /booking-system/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/.gitignore -------------------------------------------------------------------------------- /booking-system/frontend/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/dist/index.html -------------------------------------------------------------------------------- /booking-system/frontend/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/frontend.go -------------------------------------------------------------------------------- /booking-system/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/index.html -------------------------------------------------------------------------------- /booking-system/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/package.json -------------------------------------------------------------------------------- /booking-system/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/src/App.tsx -------------------------------------------------------------------------------- /booking-system/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/src/index.css -------------------------------------------------------------------------------- /booking-system/frontend/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/src/lib/api.ts -------------------------------------------------------------------------------- /booking-system/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/src/main.tsx -------------------------------------------------------------------------------- /booking-system/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/tsconfig.json -------------------------------------------------------------------------------- /booking-system/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/frontend/vite.config.ts -------------------------------------------------------------------------------- /booking-system/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/go.mod -------------------------------------------------------------------------------- /booking-system/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/go.sum -------------------------------------------------------------------------------- /booking-system/sendgrid/sendgrid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/sendgrid/sendgrid.go -------------------------------------------------------------------------------- /booking-system/user/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/booking-system/user/auth.go -------------------------------------------------------------------------------- /clerk-remix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/.gitignore -------------------------------------------------------------------------------- /clerk-remix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/README.md -------------------------------------------------------------------------------- /clerk-remix/backend/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/backend/admin/admin.go -------------------------------------------------------------------------------- /clerk-remix/backend/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/backend/auth/auth.go -------------------------------------------------------------------------------- /clerk-remix/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/encore.app -------------------------------------------------------------------------------- /clerk-remix/frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/.env.example -------------------------------------------------------------------------------- /clerk-remix/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /clerk-remix/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /clerk-remix/frontend/app/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/app/lib/client.ts -------------------------------------------------------------------------------- /clerk-remix/frontend/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/app/root.tsx -------------------------------------------------------------------------------- /clerk-remix/frontend/app/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/app/tailwind.css -------------------------------------------------------------------------------- /clerk-remix/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/package-lock.json -------------------------------------------------------------------------------- /clerk-remix/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/package.json -------------------------------------------------------------------------------- /clerk-remix/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/postcss.config.js -------------------------------------------------------------------------------- /clerk-remix/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/public/favicon.ico -------------------------------------------------------------------------------- /clerk-remix/frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /clerk-remix/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/tsconfig.json -------------------------------------------------------------------------------- /clerk-remix/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/frontend/vite.config.ts -------------------------------------------------------------------------------- /clerk-remix/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/go.mod -------------------------------------------------------------------------------- /clerk-remix/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk-remix/go.sum -------------------------------------------------------------------------------- /clerk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/.gitignore -------------------------------------------------------------------------------- /clerk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/README.md -------------------------------------------------------------------------------- /clerk/backend/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/backend/admin/admin.go -------------------------------------------------------------------------------- /clerk/backend/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/backend/auth/auth.go -------------------------------------------------------------------------------- /clerk/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/encore.app -------------------------------------------------------------------------------- /clerk/frontend/.env: -------------------------------------------------------------------------------- 1 | VITE_CLERK_PUBLISHABLE_KEY=pk_test_... 2 | -------------------------------------------------------------------------------- /clerk/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /clerk/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/.gitignore -------------------------------------------------------------------------------- /clerk/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/index.html -------------------------------------------------------------------------------- /clerk/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/package-lock.json -------------------------------------------------------------------------------- /clerk/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/package.json -------------------------------------------------------------------------------- /clerk/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/public/favicon.ico -------------------------------------------------------------------------------- /clerk/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/src/App.css -------------------------------------------------------------------------------- /clerk/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/src/App.tsx -------------------------------------------------------------------------------- /clerk/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/src/index.css -------------------------------------------------------------------------------- /clerk/frontend/src/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/src/lib/client.ts -------------------------------------------------------------------------------- /clerk/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/src/main.tsx -------------------------------------------------------------------------------- /clerk/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /clerk/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/tsconfig.json -------------------------------------------------------------------------------- /clerk/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /clerk/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/vercel.json -------------------------------------------------------------------------------- /clerk/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/frontend/vite.config.ts -------------------------------------------------------------------------------- /clerk/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/go.mod -------------------------------------------------------------------------------- /clerk/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/clerk/go.sum -------------------------------------------------------------------------------- /cli-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/cli-templates.json -------------------------------------------------------------------------------- /cli-tutorials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/cli-tutorials.json -------------------------------------------------------------------------------- /firebase-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/.gitignore -------------------------------------------------------------------------------- /firebase-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/README.md -------------------------------------------------------------------------------- /firebase-auth/backend/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/backend/admin/admin.go -------------------------------------------------------------------------------- /firebase-auth/backend/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/backend/auth/auth.go -------------------------------------------------------------------------------- /firebase-auth/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/encore.app -------------------------------------------------------------------------------- /firebase-auth/frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/.env -------------------------------------------------------------------------------- /firebase-auth/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /firebase-auth/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/.gitignore -------------------------------------------------------------------------------- /firebase-auth/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/index.html -------------------------------------------------------------------------------- /firebase-auth/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/package.json -------------------------------------------------------------------------------- /firebase-auth/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/src/App.css -------------------------------------------------------------------------------- /firebase-auth/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/src/App.tsx -------------------------------------------------------------------------------- /firebase-auth/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/src/index.css -------------------------------------------------------------------------------- /firebase-auth/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/src/main.tsx -------------------------------------------------------------------------------- /firebase-auth/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /firebase-auth/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/tsconfig.json -------------------------------------------------------------------------------- /firebase-auth/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/vercel.json -------------------------------------------------------------------------------- /firebase-auth/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/frontend/vite.config.ts -------------------------------------------------------------------------------- /firebase-auth/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/go.mod -------------------------------------------------------------------------------- /firebase-auth/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/firebase-auth/go.sum -------------------------------------------------------------------------------- /graphql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/.gitignore -------------------------------------------------------------------------------- /graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/README.md -------------------------------------------------------------------------------- /graphql/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/encore.app -------------------------------------------------------------------------------- /graphql/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/go.mod -------------------------------------------------------------------------------- /graphql/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/go.sum -------------------------------------------------------------------------------- /graphql/gqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/gqlgen.yml -------------------------------------------------------------------------------- /graphql/graphql/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/graphql/generated/generated.go -------------------------------------------------------------------------------- /graphql/graphql/graphql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/graphql/graphql.go -------------------------------------------------------------------------------- /graphql/graphql/model/model.go: -------------------------------------------------------------------------------- 1 | package model 2 | -------------------------------------------------------------------------------- /graphql/graphql/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/graphql/resolver.go -------------------------------------------------------------------------------- /graphql/graphql/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/graphql/tools.go -------------------------------------------------------------------------------- /graphql/graphql/url.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/graphql/url.graphqls -------------------------------------------------------------------------------- /graphql/graphql/url.resolvers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/graphql/url.resolvers.go -------------------------------------------------------------------------------- /graphql/url/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/url/url.go -------------------------------------------------------------------------------- /graphql/url/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/graphql/url/url_test.go -------------------------------------------------------------------------------- /hello-world/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/hello-world/.gitignore -------------------------------------------------------------------------------- /hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/hello-world/README.md -------------------------------------------------------------------------------- /hello-world/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/hello-world/encore.app -------------------------------------------------------------------------------- /hello-world/go.mod: -------------------------------------------------------------------------------- 1 | module encore.app 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /hello-world/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hello-world/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/hello-world/hello/hello.go -------------------------------------------------------------------------------- /hello-world/hello/hello_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/hello-world/hello/hello_test.go -------------------------------------------------------------------------------- /logto-react-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/.gitignore -------------------------------------------------------------------------------- /logto-react-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/README.md -------------------------------------------------------------------------------- /logto-react-sdk/backend/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/backend/api/api.go -------------------------------------------------------------------------------- /logto-react-sdk/backend/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/backend/auth/auth.go -------------------------------------------------------------------------------- /logto-react-sdk/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/encore.app -------------------------------------------------------------------------------- /logto-react-sdk/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/frontend/.gitignore -------------------------------------------------------------------------------- /logto-react-sdk/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/frontend/index.html -------------------------------------------------------------------------------- /logto-react-sdk/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/frontend/package.json -------------------------------------------------------------------------------- /logto-react-sdk/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/frontend/src/App.tsx -------------------------------------------------------------------------------- /logto-react-sdk/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/frontend/src/main.tsx -------------------------------------------------------------------------------- /logto-react-sdk/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | -------------------------------------------------------------------------------- /logto-react-sdk/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /logto-react-sdk/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/frontend/tsconfig.json -------------------------------------------------------------------------------- /logto-react-sdk/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/frontend/vite.config.ts -------------------------------------------------------------------------------- /logto-react-sdk/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/go.mod -------------------------------------------------------------------------------- /logto-react-sdk/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/logto-react-sdk/go.sum -------------------------------------------------------------------------------- /meeting-notes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/.gitignore -------------------------------------------------------------------------------- /meeting-notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/README.md -------------------------------------------------------------------------------- /meeting-notes/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/encore.app -------------------------------------------------------------------------------- /meeting-notes/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/frontend/.gitignore -------------------------------------------------------------------------------- /meeting-notes/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/frontend/index.html -------------------------------------------------------------------------------- /meeting-notes/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/frontend/package.json -------------------------------------------------------------------------------- /meeting-notes/frontend/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/frontend/src/client.ts -------------------------------------------------------------------------------- /meeting-notes/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/frontend/src/index.css -------------------------------------------------------------------------------- /meeting-notes/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/frontend/src/main.tsx -------------------------------------------------------------------------------- /meeting-notes/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /meeting-notes/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/frontend/tsconfig.json -------------------------------------------------------------------------------- /meeting-notes/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/frontend/vite.config.ts -------------------------------------------------------------------------------- /meeting-notes/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/go.mod -------------------------------------------------------------------------------- /meeting-notes/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/go.sum -------------------------------------------------------------------------------- /meeting-notes/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/images/demo.gif -------------------------------------------------------------------------------- /meeting-notes/note/note.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/note/note.go -------------------------------------------------------------------------------- /meeting-notes/pexels/pexels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/meeting-notes/pexels/pexels.go -------------------------------------------------------------------------------- /nextjs-auth0-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-auth0-starter/README.md -------------------------------------------------------------------------------- /nextjs-auth0-starter/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-auth0-starter/encore.app -------------------------------------------------------------------------------- /nextjs-auth0-starter/frontend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /nextjs-auth0-starter/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-auth0-starter/go.mod -------------------------------------------------------------------------------- /nextjs-auth0-starter/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-auth0-starter/go.sum -------------------------------------------------------------------------------- /nextjs-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/.gitignore -------------------------------------------------------------------------------- /nextjs-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/README.md -------------------------------------------------------------------------------- /nextjs-starter/backend/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/backend/auth/auth.go -------------------------------------------------------------------------------- /nextjs-starter/backend/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/backend/user/user.go -------------------------------------------------------------------------------- /nextjs-starter/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/encore.app -------------------------------------------------------------------------------- /nextjs-starter/frontend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /nextjs-starter/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/frontend/.gitignore -------------------------------------------------------------------------------- /nextjs-starter/frontend/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/frontend/app/favicon.ico -------------------------------------------------------------------------------- /nextjs-starter/frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/frontend/app/globals.css -------------------------------------------------------------------------------- /nextjs-starter/frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/frontend/app/layout.tsx -------------------------------------------------------------------------------- /nextjs-starter/frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/frontend/app/page.tsx -------------------------------------------------------------------------------- /nextjs-starter/frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/frontend/next.config.js -------------------------------------------------------------------------------- /nextjs-starter/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/frontend/package.json -------------------------------------------------------------------------------- /nextjs-starter/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/frontend/tsconfig.json -------------------------------------------------------------------------------- /nextjs-starter/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/go.mod -------------------------------------------------------------------------------- /nextjs-starter/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/nextjs-starter/go.sum -------------------------------------------------------------------------------- /react-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/.gitignore -------------------------------------------------------------------------------- /react-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/README.md -------------------------------------------------------------------------------- /react-starter/backend/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/backend/admin/admin.go -------------------------------------------------------------------------------- /react-starter/backend/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/backend/auth/auth.go -------------------------------------------------------------------------------- /react-starter/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/encore.app -------------------------------------------------------------------------------- /react-starter/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /react-starter/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/.gitignore -------------------------------------------------------------------------------- /react-starter/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/index.html -------------------------------------------------------------------------------- /react-starter/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/package.json -------------------------------------------------------------------------------- /react-starter/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/src/App.css -------------------------------------------------------------------------------- /react-starter/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/src/App.tsx -------------------------------------------------------------------------------- /react-starter/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/src/index.css -------------------------------------------------------------------------------- /react-starter/frontend/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/src/lib/auth.ts -------------------------------------------------------------------------------- /react-starter/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/src/main.tsx -------------------------------------------------------------------------------- /react-starter/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /react-starter/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/tsconfig.json -------------------------------------------------------------------------------- /react-starter/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/vercel.json -------------------------------------------------------------------------------- /react-starter/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/frontend/vite.config.ts -------------------------------------------------------------------------------- /react-starter/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/go.mod -------------------------------------------------------------------------------- /react-starter/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/react-starter/go.sum -------------------------------------------------------------------------------- /slack-bot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/slack-bot/.gitignore -------------------------------------------------------------------------------- /slack-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/slack-bot/README.md -------------------------------------------------------------------------------- /slack-bot/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/slack-bot/encore.app -------------------------------------------------------------------------------- /slack-bot/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/slack-bot/go.mod -------------------------------------------------------------------------------- /slack-bot/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/slack-bot/go.sum -------------------------------------------------------------------------------- /slack-bot/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/slack-bot/slack/slack.go -------------------------------------------------------------------------------- /sql-database/.gitignore: -------------------------------------------------------------------------------- 1 | /.encore 2 | -------------------------------------------------------------------------------- /sql-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sql-database/README.md -------------------------------------------------------------------------------- /sql-database/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sql-database/encore.app -------------------------------------------------------------------------------- /sql-database/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sql-database/go.mod -------------------------------------------------------------------------------- /sql-database/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sql-database/go.sum -------------------------------------------------------------------------------- /sql-database/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sql-database/hello/hello.go -------------------------------------------------------------------------------- /sql-database/hello/hello_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sql-database/hello/hello_test.go -------------------------------------------------------------------------------- /sqlc-database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/.gitignore -------------------------------------------------------------------------------- /sqlc-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/README.md -------------------------------------------------------------------------------- /sqlc-database/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/encore.app -------------------------------------------------------------------------------- /sqlc-database/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/go.mod -------------------------------------------------------------------------------- /sqlc-database/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/go.sum -------------------------------------------------------------------------------- /sqlc-database/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/hello/hello.go -------------------------------------------------------------------------------- /sqlc-database/hello/hello_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/hello/hello_test.go -------------------------------------------------------------------------------- /sqlc-database/hello/store/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/hello/store/db.go -------------------------------------------------------------------------------- /sqlc-database/hello/store/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/hello/store/models.go -------------------------------------------------------------------------------- /sqlc-database/hello/store/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/hello/store/querier.go -------------------------------------------------------------------------------- /sqlc-database/sqlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/sqlc-database/sqlc.yaml -------------------------------------------------------------------------------- /trello-clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/.gitignore -------------------------------------------------------------------------------- /trello-clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/README.md -------------------------------------------------------------------------------- /trello-clone/board/board.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/board/board.go -------------------------------------------------------------------------------- /trello-clone/board/column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/board/column.go -------------------------------------------------------------------------------- /trello-clone/board/column_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/board/column_test.go -------------------------------------------------------------------------------- /trello-clone/card/card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/card/card.go -------------------------------------------------------------------------------- /trello-clone/card/card_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/card/card_test.go -------------------------------------------------------------------------------- /trello-clone/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/encore.app -------------------------------------------------------------------------------- /trello-clone/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/go.mod -------------------------------------------------------------------------------- /trello-clone/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/go.sum -------------------------------------------------------------------------------- /trello-clone/images/encore-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/trello-clone/images/encore-flow.png -------------------------------------------------------------------------------- /ts/.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ts/ai-chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/.gitignore -------------------------------------------------------------------------------- /ts/ai-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/README.md -------------------------------------------------------------------------------- /ts/ai-chat/bot/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/bot/bot.ts -------------------------------------------------------------------------------- /ts/ai-chat/bot/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/bot/encore.service.ts -------------------------------------------------------------------------------- /ts/ai-chat/bot/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/bot/proxy.ts -------------------------------------------------------------------------------- /ts/ai-chat/chat/provider/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/chat/provider/provider.ts -------------------------------------------------------------------------------- /ts/ai-chat/chat/provider/slack/slack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/chat/provider/slack/slack.ts -------------------------------------------------------------------------------- /ts/ai-chat/chat/service/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/chat/service/chat.ts -------------------------------------------------------------------------------- /ts/ai-chat/chat/service/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/chat/service/clients.ts -------------------------------------------------------------------------------- /ts/ai-chat/chat/service/topics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/chat/service/topics.ts -------------------------------------------------------------------------------- /ts/ai-chat/docs/assets/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/docs/assets/deploy.png -------------------------------------------------------------------------------- /ts/ai-chat/docs/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/docs/assets/overview.png -------------------------------------------------------------------------------- /ts/ai-chat/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/encore.app -------------------------------------------------------------------------------- /ts/ai-chat/example-initial-setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/example-initial-setup.json -------------------------------------------------------------------------------- /ts/ai-chat/llm/provider/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/llm/provider/provider.ts -------------------------------------------------------------------------------- /ts/ai-chat/llm/service/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/llm/service/clients.ts -------------------------------------------------------------------------------- /ts/ai-chat/llm/service/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/llm/service/llm.ts -------------------------------------------------------------------------------- /ts/ai-chat/llm/service/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/llm/service/prompts.ts -------------------------------------------------------------------------------- /ts/ai-chat/llm/service/topics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/llm/service/topics.ts -------------------------------------------------------------------------------- /ts/ai-chat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/package-lock.json -------------------------------------------------------------------------------- /ts/ai-chat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/package.json -------------------------------------------------------------------------------- /ts/ai-chat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/tsconfig.json -------------------------------------------------------------------------------- /ts/ai-chat/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/ai-chat/utils/utils.ts -------------------------------------------------------------------------------- /ts/auth0-react-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/.gitignore -------------------------------------------------------------------------------- /ts/auth0-react-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/README.md -------------------------------------------------------------------------------- /ts/auth0-react-sdk/admin/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/admin/admin.ts -------------------------------------------------------------------------------- /ts/auth0-react-sdk/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/auth/auth.ts -------------------------------------------------------------------------------- /ts/auth0-react-sdk/auth/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/auth/config.ts -------------------------------------------------------------------------------- /ts/auth0-react-sdk/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/encore.app -------------------------------------------------------------------------------- /ts/auth0-react-sdk/frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/frontend/.env -------------------------------------------------------------------------------- /ts/auth0-react-sdk/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/frontend/.gitignore -------------------------------------------------------------------------------- /ts/auth0-react-sdk/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/frontend/index.html -------------------------------------------------------------------------------- /ts/auth0-react-sdk/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/frontend/src/App.css -------------------------------------------------------------------------------- /ts/auth0-react-sdk/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/frontend/src/App.tsx -------------------------------------------------------------------------------- /ts/auth0-react-sdk/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ts/auth0-react-sdk/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/frontend/vercel.json -------------------------------------------------------------------------------- /ts/auth0-react-sdk/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/package-lock.json -------------------------------------------------------------------------------- /ts/auth0-react-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/package.json -------------------------------------------------------------------------------- /ts/auth0-react-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/auth0-react-sdk/tsconfig.json -------------------------------------------------------------------------------- /ts/clerk-simple/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | encore.gen/ 3 | *.log 4 | .DS_Store 5 | 6 | -------------------------------------------------------------------------------- /ts/clerk-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/README.md -------------------------------------------------------------------------------- /ts/clerk-simple/auth/clerk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/auth/clerk.ts -------------------------------------------------------------------------------- /ts/clerk-simple/auth/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/auth/handler.ts -------------------------------------------------------------------------------- /ts/clerk-simple/auth/webhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/auth/webhooks.ts -------------------------------------------------------------------------------- /ts/clerk-simple/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/encore.app -------------------------------------------------------------------------------- /ts/clerk-simple/frontend/frontend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/frontend/frontend.ts -------------------------------------------------------------------------------- /ts/clerk-simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/package.json -------------------------------------------------------------------------------- /ts/clerk-simple/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/tsconfig.json -------------------------------------------------------------------------------- /ts/clerk-simple/user/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/user/db.ts -------------------------------------------------------------------------------- /ts/clerk-simple/user/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk-simple/user/profile.ts -------------------------------------------------------------------------------- /ts/clerk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/.gitignore -------------------------------------------------------------------------------- /ts/clerk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/README.md -------------------------------------------------------------------------------- /ts/clerk/admin/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/admin/admin.ts -------------------------------------------------------------------------------- /ts/clerk/admin/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/admin/encore.service.ts -------------------------------------------------------------------------------- /ts/clerk/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/auth/auth.ts -------------------------------------------------------------------------------- /ts/clerk/auth/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/auth/config.ts -------------------------------------------------------------------------------- /ts/clerk/auth/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/auth/encore.service.ts -------------------------------------------------------------------------------- /ts/clerk/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/encore.app -------------------------------------------------------------------------------- /ts/clerk/frontend/.env: -------------------------------------------------------------------------------- 1 | VITE_CLERK_PUBLISHABLE_KEY=pk_test_... 2 | -------------------------------------------------------------------------------- /ts/clerk/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/.gitignore -------------------------------------------------------------------------------- /ts/clerk/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/index.html -------------------------------------------------------------------------------- /ts/clerk/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/package-lock.json -------------------------------------------------------------------------------- /ts/clerk/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/package.json -------------------------------------------------------------------------------- /ts/clerk/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/public/favicon.ico -------------------------------------------------------------------------------- /ts/clerk/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/src/App.css -------------------------------------------------------------------------------- /ts/clerk/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/src/App.tsx -------------------------------------------------------------------------------- /ts/clerk/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/src/index.css -------------------------------------------------------------------------------- /ts/clerk/frontend/src/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/src/lib/client.ts -------------------------------------------------------------------------------- /ts/clerk/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/src/main.tsx -------------------------------------------------------------------------------- /ts/clerk/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ts/clerk/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/tsconfig.json -------------------------------------------------------------------------------- /ts/clerk/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /ts/clerk/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/vercel.json -------------------------------------------------------------------------------- /ts/clerk/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/frontend/vite.config.ts -------------------------------------------------------------------------------- /ts/clerk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/package.json -------------------------------------------------------------------------------- /ts/clerk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/clerk/tsconfig.json -------------------------------------------------------------------------------- /ts/daytona/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/README.md -------------------------------------------------------------------------------- /ts/daytona/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/encore.app -------------------------------------------------------------------------------- /ts/daytona/execution/advanced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/execution/advanced.ts -------------------------------------------------------------------------------- /ts/daytona/execution/ai-generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/execution/ai-generate.ts -------------------------------------------------------------------------------- /ts/daytona/execution/daytona.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/execution/daytona.ts -------------------------------------------------------------------------------- /ts/daytona/execution/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/execution/db.ts -------------------------------------------------------------------------------- /ts/daytona/execution/execute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/execution/execute.ts -------------------------------------------------------------------------------- /ts/daytona/execution/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/execution/files.ts -------------------------------------------------------------------------------- /ts/daytona/frontend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/frontend/app.js -------------------------------------------------------------------------------- /ts/daytona/frontend/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/frontend/encore.service.ts -------------------------------------------------------------------------------- /ts/daytona/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/frontend/index.html -------------------------------------------------------------------------------- /ts/daytona/frontend/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/frontend/static.ts -------------------------------------------------------------------------------- /ts/daytona/frontend/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/frontend/styles.css -------------------------------------------------------------------------------- /ts/daytona/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/package.json -------------------------------------------------------------------------------- /ts/daytona/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/daytona/tsconfig.json -------------------------------------------------------------------------------- /ts/drizzle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/.gitignore -------------------------------------------------------------------------------- /ts/drizzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/README.md -------------------------------------------------------------------------------- /ts/drizzle/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/encore.app -------------------------------------------------------------------------------- /ts/drizzle/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/package-lock.json -------------------------------------------------------------------------------- /ts/drizzle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/package.json -------------------------------------------------------------------------------- /ts/drizzle/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/tsconfig.json -------------------------------------------------------------------------------- /ts/drizzle/users/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/users/database.ts -------------------------------------------------------------------------------- /ts/drizzle/users/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/users/drizzle.config.ts -------------------------------------------------------------------------------- /ts/drizzle/users/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/users/schema.ts -------------------------------------------------------------------------------- /ts/drizzle/users/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/users/user.controller.ts -------------------------------------------------------------------------------- /ts/drizzle/users/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/users/user.interface.ts -------------------------------------------------------------------------------- /ts/drizzle/users/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/users/user.service.ts -------------------------------------------------------------------------------- /ts/drizzle/users/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/drizzle/users/utils.ts -------------------------------------------------------------------------------- /ts/elevenlabs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/.gitignore -------------------------------------------------------------------------------- /ts/elevenlabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/README.md -------------------------------------------------------------------------------- /ts/elevenlabs/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/audio.png -------------------------------------------------------------------------------- /ts/elevenlabs/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/encore.app -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/frontend/.gitignore -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/frontend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/frontend/frontend.ts -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/frontend/index.html -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/frontend/package.json -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/frontend/src/App.tsx -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/frontend/src/client.ts -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/frontend/src/main.tsx -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/frontend/tsconfig.json -------------------------------------------------------------------------------- /ts/elevenlabs/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/frontend/vite.config.ts -------------------------------------------------------------------------------- /ts/elevenlabs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/package-lock.json -------------------------------------------------------------------------------- /ts/elevenlabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/package.json -------------------------------------------------------------------------------- /ts/elevenlabs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/tsconfig.json -------------------------------------------------------------------------------- /ts/elevenlabs/voices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/elevenlabs/voices.png -------------------------------------------------------------------------------- /ts/empty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/empty/.gitignore -------------------------------------------------------------------------------- /ts/empty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/empty/README.md -------------------------------------------------------------------------------- /ts/empty/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/empty/encore.app -------------------------------------------------------------------------------- /ts/empty/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/empty/package-lock.json -------------------------------------------------------------------------------- /ts/empty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/empty/package.json -------------------------------------------------------------------------------- /ts/empty/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/empty/tsconfig.json -------------------------------------------------------------------------------- /ts/expressjs-migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/expressjs-migration/README.md -------------------------------------------------------------------------------- /ts/expressjs-migration/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/expressjs-migration/youtube.png -------------------------------------------------------------------------------- /ts/file-upload/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/file-upload/.gitignore -------------------------------------------------------------------------------- /ts/file-upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/file-upload/README.md -------------------------------------------------------------------------------- /ts/file-upload/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/file-upload/encore.app -------------------------------------------------------------------------------- /ts/file-upload/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/file-upload/package-lock.json -------------------------------------------------------------------------------- /ts/file-upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/file-upload/package.json -------------------------------------------------------------------------------- /ts/file-upload/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/file-upload/tsconfig.json -------------------------------------------------------------------------------- /ts/file-upload/upload/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/file-upload/upload/upload.ts -------------------------------------------------------------------------------- /ts/gpt-functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/gpt-functions/.gitignore -------------------------------------------------------------------------------- /ts/gpt-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/gpt-functions/README.md -------------------------------------------------------------------------------- /ts/gpt-functions/book/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/gpt-functions/book/book.ts -------------------------------------------------------------------------------- /ts/gpt-functions/book/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/gpt-functions/book/db.ts -------------------------------------------------------------------------------- /ts/gpt-functions/book/gpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/gpt-functions/book/gpt.ts -------------------------------------------------------------------------------- /ts/gpt-functions/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/gpt-functions/encore.app -------------------------------------------------------------------------------- /ts/gpt-functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/gpt-functions/package-lock.json -------------------------------------------------------------------------------- /ts/gpt-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/gpt-functions/package.json -------------------------------------------------------------------------------- /ts/gpt-functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/gpt-functions/tsconfig.json -------------------------------------------------------------------------------- /ts/graphql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/.gitignore -------------------------------------------------------------------------------- /ts/graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/README.md -------------------------------------------------------------------------------- /ts/graphql/book/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/book/book.ts -------------------------------------------------------------------------------- /ts/graphql/book/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/book/encore.service.ts -------------------------------------------------------------------------------- /ts/graphql/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/codegen.yml -------------------------------------------------------------------------------- /ts/graphql/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/encore.app -------------------------------------------------------------------------------- /ts/graphql/graphql/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/graphql/encore.service.ts -------------------------------------------------------------------------------- /ts/graphql/graphql/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/graphql/graphql.ts -------------------------------------------------------------------------------- /ts/graphql/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /ts/graphql/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/package-lock.json -------------------------------------------------------------------------------- /ts/graphql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/package.json -------------------------------------------------------------------------------- /ts/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/schema.graphql -------------------------------------------------------------------------------- /ts/graphql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/graphql/tsconfig.json -------------------------------------------------------------------------------- /ts/hello-world/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/hello-world/.gitignore -------------------------------------------------------------------------------- /ts/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/hello-world/README.md -------------------------------------------------------------------------------- /ts/hello-world/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/hello-world/encore.app -------------------------------------------------------------------------------- /ts/hello-world/hello/hello.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/hello-world/hello/hello.test.ts -------------------------------------------------------------------------------- /ts/hello-world/hello/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/hello-world/hello/hello.ts -------------------------------------------------------------------------------- /ts/hello-world/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/hello-world/package-lock.json -------------------------------------------------------------------------------- /ts/hello-world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/hello-world/package.json -------------------------------------------------------------------------------- /ts/hello-world/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/hello-world/tsconfig.json -------------------------------------------------------------------------------- /ts/introduction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/introduction/.gitignore -------------------------------------------------------------------------------- /ts/introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/introduction/README.md -------------------------------------------------------------------------------- /ts/introduction/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/introduction/encore.app -------------------------------------------------------------------------------- /ts/introduction/example-initial-setup.json: -------------------------------------------------------------------------------- 1 | { 2 | "tutorial": true 3 | } -------------------------------------------------------------------------------- /ts/introduction/foo/foo.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ts/introduction/hello/auth.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ts/introduction/hello/hello.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ts/introduction/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/introduction/package-lock.json -------------------------------------------------------------------------------- /ts/introduction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/introduction/package.json -------------------------------------------------------------------------------- /ts/introduction/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/introduction/tsconfig.json -------------------------------------------------------------------------------- /ts/introduction/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/introduction/vite.config.js -------------------------------------------------------------------------------- /ts/knex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/.gitignore -------------------------------------------------------------------------------- /ts/knex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/README.md -------------------------------------------------------------------------------- /ts/knex/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/encore.app -------------------------------------------------------------------------------- /ts/knex/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/package-lock.json -------------------------------------------------------------------------------- /ts/knex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/package.json -------------------------------------------------------------------------------- /ts/knex/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/tsconfig.json -------------------------------------------------------------------------------- /ts/knex/users/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/users/database.ts -------------------------------------------------------------------------------- /ts/knex/users/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/users/user.controller.ts -------------------------------------------------------------------------------- /ts/knex/users/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/users/user.interface.ts -------------------------------------------------------------------------------- /ts/knex/users/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/users/user.service.ts -------------------------------------------------------------------------------- /ts/knex/users/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/knex/users/utils.ts -------------------------------------------------------------------------------- /ts/langfuse-openrouter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/.gitignore -------------------------------------------------------------------------------- /ts/langfuse-openrouter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/README.md -------------------------------------------------------------------------------- /ts/langfuse-openrouter/ai/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/ai/chat.ts -------------------------------------------------------------------------------- /ts/langfuse-openrouter/ai/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/ai/clients.ts -------------------------------------------------------------------------------- /ts/langfuse-openrouter/ai/costs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/ai/costs.ts -------------------------------------------------------------------------------- /ts/langfuse-openrouter/ai/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/ai/db.ts -------------------------------------------------------------------------------- /ts/langfuse-openrouter/ai/feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/ai/feedback.ts -------------------------------------------------------------------------------- /ts/langfuse-openrouter/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/encore.app -------------------------------------------------------------------------------- /ts/langfuse-openrouter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/package.json -------------------------------------------------------------------------------- /ts/langfuse-openrouter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/langfuse-openrouter/tsconfig.json -------------------------------------------------------------------------------- /ts/mcp-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/README.md -------------------------------------------------------------------------------- /ts/mcp-example/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/encore.app -------------------------------------------------------------------------------- /ts/mcp-example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/package-lock.json -------------------------------------------------------------------------------- /ts/mcp-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/package.json -------------------------------------------------------------------------------- /ts/mcp-example/scripts/test-mcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/scripts/test-mcp.js -------------------------------------------------------------------------------- /ts/mcp-example/src/config/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/src/config/api.ts -------------------------------------------------------------------------------- /ts/mcp-example/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/src/index.ts -------------------------------------------------------------------------------- /ts/mcp-example/test-mcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/test-mcp.js -------------------------------------------------------------------------------- /ts/mcp-example/test-mcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/test-mcp.sh -------------------------------------------------------------------------------- /ts/mcp-example/test/weather.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/test/weather.test.ts -------------------------------------------------------------------------------- /ts/mcp-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/tsconfig.json -------------------------------------------------------------------------------- /ts/mcp-example/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/mcp-example/vitest.config.ts -------------------------------------------------------------------------------- /ts/middleware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/.gitignore -------------------------------------------------------------------------------- /ts/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/README.md -------------------------------------------------------------------------------- /ts/middleware/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/encore.app -------------------------------------------------------------------------------- /ts/middleware/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/package-lock.json -------------------------------------------------------------------------------- /ts/middleware/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/package.json -------------------------------------------------------------------------------- /ts/middleware/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/tsconfig.json -------------------------------------------------------------------------------- /ts/middleware/user/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/user/authentication.ts -------------------------------------------------------------------------------- /ts/middleware/user/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/user/encore.service.ts -------------------------------------------------------------------------------- /ts/middleware/user/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/user/storage.ts -------------------------------------------------------------------------------- /ts/middleware/user/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/middleware/user/users.ts -------------------------------------------------------------------------------- /ts/nestjs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/.eslintrc.js -------------------------------------------------------------------------------- /ts/nestjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/.gitignore -------------------------------------------------------------------------------- /ts/nestjs/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/.prettierrc -------------------------------------------------------------------------------- /ts/nestjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/README.md -------------------------------------------------------------------------------- /ts/nestjs/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/encore.app -------------------------------------------------------------------------------- /ts/nestjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/package-lock.json -------------------------------------------------------------------------------- /ts/nestjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/package.json -------------------------------------------------------------------------------- /ts/nestjs/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/src/app.module.ts -------------------------------------------------------------------------------- /ts/nestjs/src/applicationContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/src/applicationContext.ts -------------------------------------------------------------------------------- /ts/nestjs/src/auth/authHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/src/auth/authHandler.ts -------------------------------------------------------------------------------- /ts/nestjs/src/cats/cats.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/src/cats/cats.controller.ts -------------------------------------------------------------------------------- /ts/nestjs/src/cats/cats.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/src/cats/cats.module.ts -------------------------------------------------------------------------------- /ts/nestjs/src/cats/cats.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/src/cats/cats.providers.ts -------------------------------------------------------------------------------- /ts/nestjs/src/cats/cats.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/src/cats/cats.service.ts -------------------------------------------------------------------------------- /ts/nestjs/src/core/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/src/core/database.module.ts -------------------------------------------------------------------------------- /ts/nestjs/src/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/src/encore.service.ts -------------------------------------------------------------------------------- /ts/nestjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nestjs/tsconfig.json -------------------------------------------------------------------------------- /ts/nextjs-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/.gitignore -------------------------------------------------------------------------------- /ts/nextjs-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/README.md -------------------------------------------------------------------------------- /ts/nextjs-starter/api/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/api/admin.ts -------------------------------------------------------------------------------- /ts/nextjs-starter/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/api/auth.ts -------------------------------------------------------------------------------- /ts/nextjs-starter/app/admin/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/app/admin/error.tsx -------------------------------------------------------------------------------- /ts/nextjs-starter/app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/app/admin/page.tsx -------------------------------------------------------------------------------- /ts/nextjs-starter/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/app/favicon.ico -------------------------------------------------------------------------------- /ts/nextjs-starter/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/app/globals.css -------------------------------------------------------------------------------- /ts/nextjs-starter/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/app/layout.tsx -------------------------------------------------------------------------------- /ts/nextjs-starter/app/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/app/lib/client.ts -------------------------------------------------------------------------------- /ts/nextjs-starter/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/app/page.tsx -------------------------------------------------------------------------------- /ts/nextjs-starter/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/encore.app -------------------------------------------------------------------------------- /ts/nextjs-starter/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/next.config.ts -------------------------------------------------------------------------------- /ts/nextjs-starter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/package-lock.json -------------------------------------------------------------------------------- /ts/nextjs-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/package.json -------------------------------------------------------------------------------- /ts/nextjs-starter/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/postcss.config.mjs -------------------------------------------------------------------------------- /ts/nextjs-starter/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/public/next.svg -------------------------------------------------------------------------------- /ts/nextjs-starter/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/public/vercel.svg -------------------------------------------------------------------------------- /ts/nextjs-starter/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/tailwind.config.ts -------------------------------------------------------------------------------- /ts/nextjs-starter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/nextjs-starter/tsconfig.json -------------------------------------------------------------------------------- /ts/polar-file-sharing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/.gitignore -------------------------------------------------------------------------------- /ts/polar-file-sharing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/README.md -------------------------------------------------------------------------------- /ts/polar-file-sharing/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/auth/auth.ts -------------------------------------------------------------------------------- /ts/polar-file-sharing/auth/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/auth/db.ts -------------------------------------------------------------------------------- /ts/polar-file-sharing/auth/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/auth/handler.ts -------------------------------------------------------------------------------- /ts/polar-file-sharing/auth/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/auth/schema.ts -------------------------------------------------------------------------------- /ts/polar-file-sharing/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/encore.app -------------------------------------------------------------------------------- /ts/polar-file-sharing/files/bucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/files/bucket.ts -------------------------------------------------------------------------------- /ts/polar-file-sharing/files/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/files/db.ts -------------------------------------------------------------------------------- /ts/polar-file-sharing/files/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/files/list.ts -------------------------------------------------------------------------------- /ts/polar-file-sharing/files/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/files/upload.ts -------------------------------------------------------------------------------- /ts/polar-file-sharing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/package.json -------------------------------------------------------------------------------- /ts/polar-file-sharing/payments/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/payments/db.ts -------------------------------------------------------------------------------- /ts/polar-file-sharing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/polar-file-sharing/tsconfig.json -------------------------------------------------------------------------------- /ts/prisma/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/.env -------------------------------------------------------------------------------- /ts/prisma/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/.gitignore -------------------------------------------------------------------------------- /ts/prisma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/README.md -------------------------------------------------------------------------------- /ts/prisma/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/encore.app -------------------------------------------------------------------------------- /ts/prisma/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/package-lock.json -------------------------------------------------------------------------------- /ts/prisma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/package.json -------------------------------------------------------------------------------- /ts/prisma/prisma.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/prisma.config.ts -------------------------------------------------------------------------------- /ts/prisma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/tsconfig.json -------------------------------------------------------------------------------- /ts/prisma/users/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/users/.gitignore -------------------------------------------------------------------------------- /ts/prisma/users/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/users/database.ts -------------------------------------------------------------------------------- /ts/prisma/users/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/users/encore.service.ts -------------------------------------------------------------------------------- /ts/prisma/users/prisma/client.ts: -------------------------------------------------------------------------------- 1 | export * from "./generated/client"; 2 | -------------------------------------------------------------------------------- /ts/prisma/users/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/users/prisma/schema.prisma -------------------------------------------------------------------------------- /ts/prisma/users/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/users/user.controller.ts -------------------------------------------------------------------------------- /ts/prisma/users/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/users/user.interface.ts -------------------------------------------------------------------------------- /ts/prisma/users/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/users/user.model.ts -------------------------------------------------------------------------------- /ts/prisma/users/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/users/user.service.ts -------------------------------------------------------------------------------- /ts/prisma/users/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/prisma/users/utils.ts -------------------------------------------------------------------------------- /ts/react-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/.gitignore -------------------------------------------------------------------------------- /ts/react-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/README.md -------------------------------------------------------------------------------- /ts/react-starter/api/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/api/counter.ts -------------------------------------------------------------------------------- /ts/react-starter/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/encore.app -------------------------------------------------------------------------------- /ts/react-starter/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/eslint.config.js -------------------------------------------------------------------------------- /ts/react-starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/index.html -------------------------------------------------------------------------------- /ts/react-starter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/package-lock.json -------------------------------------------------------------------------------- /ts/react-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/package.json -------------------------------------------------------------------------------- /ts/react-starter/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/postcss.config.js -------------------------------------------------------------------------------- /ts/react-starter/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/src/App.tsx -------------------------------------------------------------------------------- /ts/react-starter/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/src/index.css -------------------------------------------------------------------------------- /ts/react-starter/src/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/src/lib/client.ts -------------------------------------------------------------------------------- /ts/react-starter/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/src/main.tsx -------------------------------------------------------------------------------- /ts/react-starter/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ts/react-starter/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/tailwind.config.js -------------------------------------------------------------------------------- /ts/react-starter/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/tsconfig.app.json -------------------------------------------------------------------------------- /ts/react-starter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/tsconfig.json -------------------------------------------------------------------------------- /ts/react-starter/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/react-starter/vite.config.ts -------------------------------------------------------------------------------- /ts/replicate-image-generator/encore.app: -------------------------------------------------------------------------------- 1 | { 2 | "id": "replicate-test-adf2", 3 | "lang": "typescript" 4 | } 5 | -------------------------------------------------------------------------------- /ts/resend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/README.md -------------------------------------------------------------------------------- /ts/resend/email/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/email/db.ts -------------------------------------------------------------------------------- /ts/resend/email/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/email/encore.service.ts -------------------------------------------------------------------------------- /ts/resend/email/resend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/email/resend.ts -------------------------------------------------------------------------------- /ts/resend/email/send.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/email/send.ts -------------------------------------------------------------------------------- /ts/resend/email/templates/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/email/templates/welcome.tsx -------------------------------------------------------------------------------- /ts/resend/email/webhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/email/webhooks.ts -------------------------------------------------------------------------------- /ts/resend/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/encore.app -------------------------------------------------------------------------------- /ts/resend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/package.json -------------------------------------------------------------------------------- /ts/resend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/resend/tsconfig.json -------------------------------------------------------------------------------- /ts/saas-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/README.md -------------------------------------------------------------------------------- /ts/saas-starter/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/backend/.gitignore -------------------------------------------------------------------------------- /ts/saas-starter/backend/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/backend/config.ts -------------------------------------------------------------------------------- /ts/saas-starter/backend/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/backend/encore.app -------------------------------------------------------------------------------- /ts/saas-starter/backend/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/backend/globals.d.ts -------------------------------------------------------------------------------- /ts/saas-starter/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/backend/package.json -------------------------------------------------------------------------------- /ts/saas-starter/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/backend/tsconfig.json -------------------------------------------------------------------------------- /ts/saas-starter/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/frontend/.gitignore -------------------------------------------------------------------------------- /ts/saas-starter/frontend/lib/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/frontend/lib/cn.ts -------------------------------------------------------------------------------- /ts/saas-starter/frontend/lib/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/frontend/lib/plans.ts -------------------------------------------------------------------------------- /ts/saas-starter/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/saas-starter/frontend/package.json -------------------------------------------------------------------------------- /ts/sentry-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sentry-demo/.gitignore -------------------------------------------------------------------------------- /ts/sentry-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sentry-demo/README.md -------------------------------------------------------------------------------- /ts/sentry-demo/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sentry-demo/encore.app -------------------------------------------------------------------------------- /ts/sentry-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sentry-demo/package.json -------------------------------------------------------------------------------- /ts/sentry-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sentry-demo/tsconfig.json -------------------------------------------------------------------------------- /ts/sequelize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/.gitignore -------------------------------------------------------------------------------- /ts/sequelize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/README.md -------------------------------------------------------------------------------- /ts/sequelize/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/encore.app -------------------------------------------------------------------------------- /ts/sequelize/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/package-lock.json -------------------------------------------------------------------------------- /ts/sequelize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/package.json -------------------------------------------------------------------------------- /ts/sequelize/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/tsconfig.json -------------------------------------------------------------------------------- /ts/sequelize/users/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/users/database.ts -------------------------------------------------------------------------------- /ts/sequelize/users/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/users/encore.service.ts -------------------------------------------------------------------------------- /ts/sequelize/users/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/users/user.controller.ts -------------------------------------------------------------------------------- /ts/sequelize/users/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/users/user.interface.ts -------------------------------------------------------------------------------- /ts/sequelize/users/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/users/user.model.ts -------------------------------------------------------------------------------- /ts/sequelize/users/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/users/user.service.ts -------------------------------------------------------------------------------- /ts/sequelize/users/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/sequelize/users/utils.ts -------------------------------------------------------------------------------- /ts/simple-event-driven/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/simple-event-driven/.gitignore -------------------------------------------------------------------------------- /ts/simple-event-driven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/simple-event-driven/README.md -------------------------------------------------------------------------------- /ts/simple-event-driven/email/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/simple-event-driven/email/email.ts -------------------------------------------------------------------------------- /ts/simple-event-driven/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/simple-event-driven/encore.app -------------------------------------------------------------------------------- /ts/simple-event-driven/hello/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/simple-event-driven/hello/hello.ts -------------------------------------------------------------------------------- /ts/simple-event-driven/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/simple-event-driven/package.json -------------------------------------------------------------------------------- /ts/simple-event-driven/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/simple-event-driven/tsconfig.json -------------------------------------------------------------------------------- /ts/simple-event-driven/user/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/simple-event-driven/user/user.ts -------------------------------------------------------------------------------- /ts/slack-bot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/slack-bot/.gitignore -------------------------------------------------------------------------------- /ts/slack-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/slack-bot/README.md -------------------------------------------------------------------------------- /ts/slack-bot/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/slack-bot/encore.app -------------------------------------------------------------------------------- /ts/slack-bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/slack-bot/package-lock.json -------------------------------------------------------------------------------- /ts/slack-bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/slack-bot/package.json -------------------------------------------------------------------------------- /ts/slack-bot/slack/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/slack-bot/slack/encore.service.ts -------------------------------------------------------------------------------- /ts/slack-bot/slack/slack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/slack-bot/slack/slack.ts -------------------------------------------------------------------------------- /ts/slack-bot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/slack-bot/tsconfig.json -------------------------------------------------------------------------------- /ts/socket-io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/socket-io/README.md -------------------------------------------------------------------------------- /ts/socket-io/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/socket-io/chat/chat.ts -------------------------------------------------------------------------------- /ts/socket-io/chat/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/socket-io/chat/encore.service.ts -------------------------------------------------------------------------------- /ts/socket-io/chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/socket-io/chat/index.html -------------------------------------------------------------------------------- /ts/socket-io/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/socket-io/encore.app -------------------------------------------------------------------------------- /ts/socket-io/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/socket-io/package-lock.json -------------------------------------------------------------------------------- /ts/socket-io/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/socket-io/package.json -------------------------------------------------------------------------------- /ts/socket-io/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/socket-io/tsconfig.json -------------------------------------------------------------------------------- /ts/static-files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/static-files/.gitignore -------------------------------------------------------------------------------- /ts/static-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/static-files/README.md -------------------------------------------------------------------------------- /ts/static-files/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/static-files/encore.app -------------------------------------------------------------------------------- /ts/static-files/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/static-files/package-lock.json -------------------------------------------------------------------------------- /ts/static-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/static-files/package.json -------------------------------------------------------------------------------- /ts/static-files/static/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/static-files/static/static.ts -------------------------------------------------------------------------------- /ts/static-files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/static-files/tsconfig.json -------------------------------------------------------------------------------- /ts/streaming-chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/.gitignore -------------------------------------------------------------------------------- /ts/streaming-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/README.md -------------------------------------------------------------------------------- /ts/streaming-chat/chat-room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/chat-room.png -------------------------------------------------------------------------------- /ts/streaming-chat/chat/chat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/chat/chat.test.ts -------------------------------------------------------------------------------- /ts/streaming-chat/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/chat/chat.ts -------------------------------------------------------------------------------- /ts/streaming-chat/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/encore.app -------------------------------------------------------------------------------- /ts/streaming-chat/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/frontend/index.html -------------------------------------------------------------------------------- /ts/streaming-chat/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ts/streaming-chat/frontend/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/frontend/static.ts -------------------------------------------------------------------------------- /ts/streaming-chat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/package-lock.json -------------------------------------------------------------------------------- /ts/streaming-chat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/package.json -------------------------------------------------------------------------------- /ts/streaming-chat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/tsconfig.json -------------------------------------------------------------------------------- /ts/streaming-chat/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming-chat/vitest.config.ts -------------------------------------------------------------------------------- /ts/streaming/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/.gitignore -------------------------------------------------------------------------------- /ts/streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/README.md -------------------------------------------------------------------------------- /ts/streaming/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/encore.app -------------------------------------------------------------------------------- /ts/streaming/frontend/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/frontend/dist/index.html -------------------------------------------------------------------------------- /ts/streaming/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/frontend/index.html -------------------------------------------------------------------------------- /ts/streaming/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/frontend/package.json -------------------------------------------------------------------------------- /ts/streaming/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/frontend/src/App.tsx -------------------------------------------------------------------------------- /ts/streaming/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/frontend/src/index.css -------------------------------------------------------------------------------- /ts/streaming/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/frontend/src/main.tsx -------------------------------------------------------------------------------- /ts/streaming/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ts/streaming/frontend/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/frontend/static.ts -------------------------------------------------------------------------------- /ts/streaming/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/frontend/tsconfig.json -------------------------------------------------------------------------------- /ts/streaming/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/frontend/vite.config.ts -------------------------------------------------------------------------------- /ts/streaming/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/package-lock.json -------------------------------------------------------------------------------- /ts/streaming/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/package.json -------------------------------------------------------------------------------- /ts/streaming/streaming/streamIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/streaming/streamIn.ts -------------------------------------------------------------------------------- /ts/streaming/streaming/streamInOut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/streaming/streamInOut.ts -------------------------------------------------------------------------------- /ts/streaming/streaming/streamOut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/streaming/streamOut.ts -------------------------------------------------------------------------------- /ts/streaming/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/streaming/tsconfig.json -------------------------------------------------------------------------------- /ts/supabase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/.gitignore -------------------------------------------------------------------------------- /ts/supabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/README.md -------------------------------------------------------------------------------- /ts/supabase/admin/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/admin/admin.ts -------------------------------------------------------------------------------- /ts/supabase/admin/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/admin/encore.service.ts -------------------------------------------------------------------------------- /ts/supabase/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/auth/auth.ts -------------------------------------------------------------------------------- /ts/supabase/auth/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/auth/encore.service.ts -------------------------------------------------------------------------------- /ts/supabase/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/encore.app -------------------------------------------------------------------------------- /ts/supabase/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/.gitignore -------------------------------------------------------------------------------- /ts/supabase/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/index.html -------------------------------------------------------------------------------- /ts/supabase/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/package.json -------------------------------------------------------------------------------- /ts/supabase/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/src/App.css -------------------------------------------------------------------------------- /ts/supabase/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/src/App.tsx -------------------------------------------------------------------------------- /ts/supabase/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/src/index.css -------------------------------------------------------------------------------- /ts/supabase/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/src/main.tsx -------------------------------------------------------------------------------- /ts/supabase/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ts/supabase/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/tsconfig.json -------------------------------------------------------------------------------- /ts/supabase/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/vercel.json -------------------------------------------------------------------------------- /ts/supabase/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/frontend/vite.config.ts -------------------------------------------------------------------------------- /ts/supabase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/package.json -------------------------------------------------------------------------------- /ts/supabase/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/supabase/tsconfig.json -------------------------------------------------------------------------------- /ts/template-engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/template-engine/.gitignore -------------------------------------------------------------------------------- /ts/template-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/template-engine/README.md -------------------------------------------------------------------------------- /ts/template-engine/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/template-engine/encore.app -------------------------------------------------------------------------------- /ts/template-engine/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/template-engine/package-lock.json -------------------------------------------------------------------------------- /ts/template-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/template-engine/package.json -------------------------------------------------------------------------------- /ts/template-engine/template/views/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ts/template-engine/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/template-engine/tsconfig.json -------------------------------------------------------------------------------- /ts/uptime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/.gitignore -------------------------------------------------------------------------------- /ts/uptime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/README.md -------------------------------------------------------------------------------- /ts/uptime/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/encore.app -------------------------------------------------------------------------------- /ts/uptime/example-initial-setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/example-initial-setup.json -------------------------------------------------------------------------------- /ts/uptime/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/.gitignore -------------------------------------------------------------------------------- /ts/uptime/frontend/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/app/favicon.ico -------------------------------------------------------------------------------- /ts/uptime/frontend/app/globals.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ts/uptime/frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/app/layout.tsx -------------------------------------------------------------------------------- /ts/uptime/frontend/app/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/app/lib/client.ts -------------------------------------------------------------------------------- /ts/uptime/frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/app/page.tsx -------------------------------------------------------------------------------- /ts/uptime/frontend/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/app/providers.tsx -------------------------------------------------------------------------------- /ts/uptime/frontend/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/encore.service.ts -------------------------------------------------------------------------------- /ts/uptime/frontend/frontend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/frontend.ts -------------------------------------------------------------------------------- /ts/uptime/frontend/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/next.config.mjs -------------------------------------------------------------------------------- /ts/uptime/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/frontend/tsconfig.json -------------------------------------------------------------------------------- /ts/uptime/monitor/check.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/monitor/check.test.ts -------------------------------------------------------------------------------- /ts/uptime/monitor/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/monitor/check.ts -------------------------------------------------------------------------------- /ts/uptime/monitor/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/monitor/encore.service.ts -------------------------------------------------------------------------------- /ts/uptime/monitor/ping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/monitor/ping.test.ts -------------------------------------------------------------------------------- /ts/uptime/monitor/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/monitor/ping.ts -------------------------------------------------------------------------------- /ts/uptime/monitor/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/monitor/status.ts -------------------------------------------------------------------------------- /ts/uptime/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/package-lock.json -------------------------------------------------------------------------------- /ts/uptime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/package.json -------------------------------------------------------------------------------- /ts/uptime/site/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/site/encore.service.ts -------------------------------------------------------------------------------- /ts/uptime/site/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/site/site.ts -------------------------------------------------------------------------------- /ts/uptime/slack/encore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/slack/encore.service.ts -------------------------------------------------------------------------------- /ts/uptime/slack/slack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/slack/slack.ts -------------------------------------------------------------------------------- /ts/uptime/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/tsconfig.json -------------------------------------------------------------------------------- /ts/uptime/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/uptime/vite.config.ts -------------------------------------------------------------------------------- /ts/url-shortener/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/url-shortener/.gitignore -------------------------------------------------------------------------------- /ts/url-shortener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/url-shortener/README.md -------------------------------------------------------------------------------- /ts/url-shortener/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/url-shortener/encore.app -------------------------------------------------------------------------------- /ts/url-shortener/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/url-shortener/package-lock.json -------------------------------------------------------------------------------- /ts/url-shortener/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/url-shortener/package.json -------------------------------------------------------------------------------- /ts/url-shortener/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/url-shortener/tsconfig.json -------------------------------------------------------------------------------- /ts/url-shortener/url/url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/url-shortener/url/url.test.ts -------------------------------------------------------------------------------- /ts/url-shortener/url/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/url-shortener/url/url.ts -------------------------------------------------------------------------------- /ts/url-shortener/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/ts/url-shortener/vite.config.ts -------------------------------------------------------------------------------- /uptime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/.gitignore -------------------------------------------------------------------------------- /uptime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/README.md -------------------------------------------------------------------------------- /uptime/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/encore.app -------------------------------------------------------------------------------- /uptime/example-initial-setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/example-initial-setup.json -------------------------------------------------------------------------------- /uptime/frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/.babelrc -------------------------------------------------------------------------------- /uptime/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/.gitignore -------------------------------------------------------------------------------- /uptime/frontend/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/dist/index.html -------------------------------------------------------------------------------- /uptime/frontend/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/frontend.go -------------------------------------------------------------------------------- /uptime/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/index.html -------------------------------------------------------------------------------- /uptime/frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/jest.config.js -------------------------------------------------------------------------------- /uptime/frontend/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/jest.setup.js -------------------------------------------------------------------------------- /uptime/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/package-lock.json -------------------------------------------------------------------------------- /uptime/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/package.json -------------------------------------------------------------------------------- /uptime/frontend/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/postcss.config.cjs -------------------------------------------------------------------------------- /uptime/frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/src/App.test.tsx -------------------------------------------------------------------------------- /uptime/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/src/App.tsx -------------------------------------------------------------------------------- /uptime/frontend/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/src/client.ts -------------------------------------------------------------------------------- /uptime/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/src/index.css -------------------------------------------------------------------------------- /uptime/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/src/main.tsx -------------------------------------------------------------------------------- /uptime/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/src/vite-env.d.ts -------------------------------------------------------------------------------- /uptime/frontend/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/tailwind.config.cjs -------------------------------------------------------------------------------- /uptime/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/tsconfig.json -------------------------------------------------------------------------------- /uptime/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /uptime/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/frontend/vite.config.ts -------------------------------------------------------------------------------- /uptime/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/go.mod -------------------------------------------------------------------------------- /uptime/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/go.sum -------------------------------------------------------------------------------- /uptime/images/encore-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/images/encore-flow.png -------------------------------------------------------------------------------- /uptime/images/frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/images/frontend.png -------------------------------------------------------------------------------- /uptime/monitor/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/monitor/check.go -------------------------------------------------------------------------------- /uptime/monitor/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/monitor/ping.go -------------------------------------------------------------------------------- /uptime/monitor/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/monitor/ping_test.go -------------------------------------------------------------------------------- /uptime/monitor/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/monitor/status.go -------------------------------------------------------------------------------- /uptime/site/migrations/2_url_unique.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE sites ADD CONSTRAINT url_uniq UNIQUE (url); -------------------------------------------------------------------------------- /uptime/site/site.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/site/site.go -------------------------------------------------------------------------------- /uptime/site/site_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/site/site_test.go -------------------------------------------------------------------------------- /uptime/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/slack/slack.go -------------------------------------------------------------------------------- /uptime/slack/slack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/uptime/slack/slack_test.go -------------------------------------------------------------------------------- /url-shortener/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/url-shortener/.gitignore -------------------------------------------------------------------------------- /url-shortener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/url-shortener/README.md -------------------------------------------------------------------------------- /url-shortener/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/url-shortener/encore.app -------------------------------------------------------------------------------- /url-shortener/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/url-shortener/go.mod -------------------------------------------------------------------------------- /url-shortener/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/url-shortener/go.sum -------------------------------------------------------------------------------- /url-shortener/url/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/url-shortener/url/url.go -------------------------------------------------------------------------------- /url-shortener/url/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/url-shortener/url/url_test.go -------------------------------------------------------------------------------- /websocket-echo-server/.gitignore: -------------------------------------------------------------------------------- 1 | /.encore 2 | -------------------------------------------------------------------------------- /websocket-echo-server/echo/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/websocket-echo-server/echo/echo.go -------------------------------------------------------------------------------- /websocket-echo-server/encore.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/websocket-echo-server/encore.app -------------------------------------------------------------------------------- /websocket-echo-server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/websocket-echo-server/go.mod -------------------------------------------------------------------------------- /websocket-echo-server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encoredev/examples/HEAD/websocket-echo-server/go.sum --------------------------------------------------------------------------------