mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
* added basic api testing framework * added credential signup test * added current user test * added github action * fixed bugs in action file * updated action * added pnpm setup * added dependency install * updated pnpm lock * only run server tests * added new package for e2e test * removed unused tests * updated action * updated test command * added env var reading * fixed typo * fixed typo * fixed unit tests with staging * added delay e2e test * added start server to action * fixed typo * fix aciton * updated github action * fixed bugs * fixed eslint error |
||
|---|---|---|
| .. | ||
| prisma | ||
| public | ||
| scripts | ||
| src | ||
| .env | ||
| .eslintrc.cjs | ||
| .gitignore | ||
| .npmrc | ||
| backend-design-doc.md | ||
| CHANGELOG.md | ||
| LICENSE | ||
| mdx-components.tsx | ||
| next.config.mjs | ||
| package.json | ||
| README.md | ||
| sentry.client.config.ts | ||
| sentry.edge.config.ts | ||
| sentry.server.config.ts | ||
| tsconfig.json | ||
N2D4's frontend-starter
Getting started
First, copy the .env file into .env.local and fill in the necessary environment variables.
Then, install the dependencies:
cd the-folder-with-your-project
npm install
Then, run the development server:
npm run dev
Open http://localhost:3000 with your browser to see the result.
To re-run the code generation (e.g. after changing the Prisma schema), run:
npm run codegen
You can also access the Prisma CLI:
npm run prisma -- <args-to-prisma-command>