mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
## Description <!-- Briefly describe the purpose and scope of your changes --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a new subscription API endpoint for managing subscriptions and products. - Enhanced subscription management with new entities and functionalities. - Added functionality to retrieve current timestamps in both local and UTC formats. - Added Polar.sh integration with customer portal and checkout session creation APIs. - **Refactor** - Redesigned team details to now present members and subscription information instead of a plan type. - Enhanced member management by incorporating role assignments. - Streamlined user data handling and removed legacy subscription event logic. - Simplified error handling in actor functions for better clarity. - Updated plan types and UI labels to reflect new subscription tiers. - Improved database indexing for Steam user data. - **Chores** - Updated the database schema with new tables and fields to support subscription, team, and member enhancements. - Extended identifier prefixes to broaden system integration. - Added new secrets related to pricing plans in infrastructure configuration. - Configured API and auth routing with new domain and routing rules. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
63 lines
1.5 KiB
TypeScript
63 lines
1.5 KiB
TypeScript
import { bus } from "./bus";
|
|
import { auth } from "./auth";
|
|
import { domain } from "./dns";
|
|
import { secret } from "./secret";
|
|
import { cluster } from "./cluster";
|
|
import { postgres } from "./postgres";
|
|
|
|
export const api = new sst.aws.Service("Api", {
|
|
cluster,
|
|
cpu: $app.stage === "production" ? "2 vCPU" : undefined,
|
|
memory: $app.stage === "production" ? "4 GB" : undefined,
|
|
command: ["bun", "run", "./src/api/index.ts"],
|
|
link: [
|
|
bus,
|
|
auth,
|
|
postgres,
|
|
secret.PolarSecret,
|
|
secret.PolarWebhookSecret,
|
|
secret.NestriFamilyMonthly,
|
|
secret.NestriFamilyYearly,
|
|
secret.NestriFreeMonthly,
|
|
secret.NestriProMonthly,
|
|
secret.NestriProYearly,
|
|
],
|
|
image: {
|
|
dockerfile: "packages/functions/Containerfile",
|
|
},
|
|
environment: {
|
|
NO_COLOR: "1",
|
|
},
|
|
loadBalancer: {
|
|
rules: [
|
|
{
|
|
listen: "80/http",
|
|
forward: "3001/http",
|
|
},
|
|
],
|
|
},
|
|
dev: {
|
|
command: "bun dev:api",
|
|
directory: "packages/functions",
|
|
url: "http://localhost:3001",
|
|
},
|
|
scaling:
|
|
$app.stage === "production"
|
|
? {
|
|
min: 2,
|
|
max: 10,
|
|
}
|
|
: undefined,
|
|
});
|
|
|
|
|
|
export const apiRoute = new sst.aws.Router("ApiRoute", {
|
|
routes: {
|
|
// I think api.url should work all the same
|
|
"/*": api.nodes.loadBalancer.dnsName,
|
|
},
|
|
domain: {
|
|
name: "api." + domain,
|
|
dns: sst.cloudflare.dns(),
|
|
},
|
|
}) |