stack/packages/stack-server
Zai Shi 2995d9662a
UserButton component and account setting page (#10)
* fixed sign in title bug

* addec changeset

* added popover

* added dropdown, improved user button

* improved user button

* added avatar, adding account setting

* added send verification email

* added plaintext to emails

* fixed select props

* added name update

* added password update

* added email password update

* only password update for accounts logged in credential

* fixed small errors in endpoints

* improved account setting page

* fixed types

* removed props export

* divider -> separator

* fixed accidently renamed dividers

* added changeset
2024-04-13 16:42:05 +02:00
..
prisma added migration file 2024-03-13 10:41:33 +08:00
public Update logos 2024-04-12 18:36:59 +02:00
scripts Move code (initial commit) 2024-02-28 14:35:30 +01:00
src UserButton component and account setting page (#10) 2024-04-13 16:42:05 +02:00
.env stackframe.co -> stack-auth.com 2024-04-12 18:29:02 +02:00
.eslintrc.cjs Move code (initial commit) 2024-02-28 14:35:30 +01:00
.gitignore Move code (initial commit) 2024-02-28 14:35:30 +01:00
.npmrc Move code (initial commit) 2024-02-28 14:35:30 +01:00
backend-design-doc.md Rework known errors 2024-03-25 20:59:16 -07:00
CHANGELOG.md bumped version 2024-03-22 16:18:03 +08:00
LICENSE Licenses 2024-02-28 15:27:00 +01:00
mdx-components.tsx Move code (initial commit) 2024-02-28 14:35:30 +01:00
next.config.mjs Add useful headers 2024-04-12 17:44:41 +02:00
package.json Align page loading indicator 2024-04-11 17:23:51 +02:00
README.md Move code (initial commit) 2024-02-28 14:35:30 +01:00
tsconfig.json New UI system (#5) 2024-03-21 10:51:53 +01:00

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>