mirror of
https://github.com/wasp-lang/open-saas.git
synced 2025-04-10 21:09:04 +02:00
fix app_diff
This commit is contained in:
parent
83c91fefad
commit
f2e3b97d3b
@ -1,10 +1,5 @@
|
||||
public/banner.png
|
||||
public/public-banner.png
|
||||
src/client/static/avatar-placeholder.png
|
||||
src/client/static/avatar-placeholder.webp
|
||||
src/client/static/da-boi.png
|
||||
src/client/static/da-boi.webp
|
||||
src/client/static/logo.png
|
||||
src/client/static/open-saas-banner.webp
|
||||
src/landing-page/logos/SalesforceLogo.tsx
|
||||
src/payment/lemonSqueezy/checkoutUtils.ts
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- template/app/main.wasp
|
||||
+++ opensaas-sh/app/main.wasp
|
||||
@@ -3,24 +3,24 @@
|
||||
@@ -3,24 +3,30 @@
|
||||
version: "^0.15.0"
|
||||
},
|
||||
|
||||
@ -8,6 +8,12 @@
|
||||
+ title: "Open SaaS",
|
||||
|
||||
head: [
|
||||
+ "<meta charset='utf-8' />",
|
||||
+ "<meta name='description' content='Build and launch your SaaS application faster with our free, open-source starter kit. Features include auth, payments, AI example app, and admin dashboard.' />",
|
||||
+ "<meta name='author' content='Open SaaS' />",
|
||||
+ "<meta name='keywords' content='saas, starter, boilerplate, free, open source, authentication, payments' />",
|
||||
+
|
||||
+ "<meta property='og:site_name' content='Open SaaS' />",
|
||||
"<meta property='og:type' content='website' />",
|
||||
- "<meta property='og:title' content='My Open SaaS App' />",
|
||||
+ "<meta property='og:title' content='Open SaaS' />",
|
||||
@ -36,7 +42,7 @@
|
||||
],
|
||||
|
||||
// 🔐 Auth out of the box! https://wasp-lang.dev/docs/auth/overview
|
||||
@@ -32,7 +32,7 @@
|
||||
@@ -32,7 +38,7 @@
|
||||
email: {
|
||||
fromField: {
|
||||
name: "Open SaaS App",
|
||||
@ -45,7 +51,7 @@
|
||||
},
|
||||
emailVerification: {
|
||||
clientRoute: EmailVerificationRoute,
|
||||
@@ -44,21 +44,18 @@
|
||||
@@ -44,21 +50,18 @@
|
||||
},
|
||||
userSignupFields: import { getEmailUserFields } from "@src/auth/userSignupFields",
|
||||
},
|
||||
@ -79,7 +85,7 @@
|
||||
},
|
||||
onAfterSignup: import { onAfterSignup } from "@src/auth/hooks",
|
||||
onAuthFailedRedirectTo: "/login",
|
||||
@@ -81,11 +78,11 @@
|
||||
@@ -81,11 +84,11 @@
|
||||
// NOTE: "Dummy" provider is just for local development purposes.
|
||||
// Make sure to check the server logs for the email confirmation url (it will not be sent to an address)!
|
||||
// Once you are ready for production, switch to e.g. "SendGrid" or "Mailgun" providers. Check out https://docs.opensaas.sh/guides/email-sending/ .
|
||||
@ -93,7 +99,7 @@
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -206,9 +203,9 @@
|
||||
@@ -206,9 +209,9 @@
|
||||
}
|
||||
|
||||
api paymentsWebhook {
|
||||
|
@ -0,0 +1,11 @@
|
||||
--- template/app/migrations/20241031103046_remove_checkout_session_id/migration.sql
|
||||
+++ opensaas-sh/app/migrations/20241031103046_remove_checkout_session_id/migration.sql
|
||||
@@ -0,0 +1,8 @@
|
||||
+/*
|
||||
+ Warnings:
|
||||
+
|
||||
+ - You are about to drop the column `checkoutSessionId` on the `User` table. All the data in the column will be lost.
|
||||
+
|
||||
+*/
|
||||
+-- AlterTable
|
||||
+ALTER TABLE "User" DROP COLUMN "checkoutSessionId";
|
@ -1,7 +1,7 @@
|
||||
--- template/app/src/landing-page/components/Clients.tsx
|
||||
+++ opensaas-sh/app/src/landing-page/components/Clients.tsx
|
||||
@@ -1,23 +1,64 @@
|
||||
+import logo from '../../client/static/logo.png';
|
||||
+import logo from '../../client/static/logo.webp';
|
||||
import AstroLogo from "../logos/AstroLogo";
|
||||
-import OpenAILogo from "../logos/OpenAILogo";
|
||||
import PrismaLogo from "../logos/PrismaLogo";
|
||||
|
@ -58,13 +58,12 @@
|
||||
</div>
|
||||
</Link>
|
||||
) : (
|
||||
@@ -125,3 +126,27 @@
|
||||
@@ -125,3 +126,26 @@
|
||||
</header>
|
||||
)
|
||||
}
|
||||
+
|
||||
+const ContestURL =
|
||||
+ 'https://docs.opensaas.sh/blog/';
|
||||
+const ContestURL = 'https://x.com/WaspLang';
|
||||
+
|
||||
+function Announcement() {
|
||||
+ return (
|
||||
@ -75,7 +74,7 @@
|
||||
+ onClick={() => window.open(ContestURL, '_blank')}
|
||||
+ className='hidden lg:block cursor-pointer rounded-full bg-neutral-700 px-2.5 py-1 text-xs hover:bg-neutral-600 tracking-wider'
|
||||
+ >
|
||||
+ Enter here and win prizes! →
|
||||
+ Vote for the winner here! →
|
||||
+ </div>
|
||||
+ <div
|
||||
+ onClick={() => window.open(ContestURL, '_blank')}
|
||||
|
Loading…
x
Reference in New Issue
Block a user