Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Murderlon committed Dec 5, 2024
1 parent 95e64df commit 6bf6790
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"organizeImports": {
"enabled": true
},
Expand Down
5 changes: 2 additions & 3 deletions infra/secret.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ export const secret = {
DATABASE_URL: new sst.Secret('DATABASE_URL'),
STRIPE_PUBLIC_KEY: new sst.Secret('STRIPE_PUBLIC_KEY'),
STRIPE_SECRET_KEY: new sst.Secret('STRIPE_SECRET_KEY'),
// TODO: github auth
// GitHubClientId: new sst.Secret('GitHubClientId'),
// GitHubClientSecret: new sst.Secret('GitHubClientSecret'),
// GITHUB_CLIENT_ID: new sst.Secret('GITHUB_CLIENT_ID'),
// GITHUB_CLIENT_SECRET: new sst.Secret('GITGUB_CLIENT_SECRET'),
HONEYPOT_ENCRYPTION_SEED: new sst.Secret('HONEYPOT_ENCRYPTION_SEED'),
}
4 changes: 0 additions & 4 deletions packages/www/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [tsconfigPaths()],
test: {
// Allows the use of `test` globals in your test files.
globals: true,
// Disables multi-threading and runs test serially. (Prisma will benefit from this).
pool: 'forks',
// Path to setup file that runs before your tests.
setupFiles: ['./tests/setup-test-env.ts'],
// Path to your test files.
Expand Down
16 changes: 9 additions & 7 deletions README.md → readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ delightful, secure user experiences.
- [Backend](#backend)
- [Frontend](#frontend)
- [When should I use this?](#when-should-i-use-this)
- [Setup](#setup)
- [Use](#use)
- [Acknowledgments](#acknowledgments)
- [License](#license)
Expand Down Expand Up @@ -170,21 +171,22 @@ This template is not designed to be the quickest to set up to play with.

We need to setup a couple of things in order to provision our infrastructure.

1. Domain to host the site and API on. Can be skipped but then you can’t test
1. **Domain** to host the site and API on. Can be skipped but then you can’t test
payments.
2. AWS account to provision the infrastructure.
3. Neon account with configured database.
4. Stripe account for payments.
5. GitHub account for the social login.
6. Secure secrets for sessions, honeypots, and encryption.
2. **AWS account** to provision the infrastructure.
3. **Neon account** with configured database.
4. **Stripe account** for payments.
5. **GitHub account** for the social login.
6. **Secure secrets** for sessions, honeypots, and encryption.

### Domain

A domain registered with
[Cloudflare](https://www.cloudflare.com/products/registrar/) or
[AWS Route 53](https://aws.amazon.com/route53/).

Just kicking the tires? You can skip this but then you can’t test payments as we
> [!NOTE]
> Just kicking the tires? You can skip this but then you can’t test payments as we
need to provision a stable URL for the Stripe webhook.

### AWS
Expand Down

0 comments on commit 6bf6790

Please sign in to comment.