-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d6ab872
commit f4627a1
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# The Good AI Lab Website | ||
|
||
This is the frontend website for The Good AI Lab, built with [Next.js](https://nextjs.org). | ||
|
||
## Development | ||
|
||
If you don't have node installed run the following command to install it: | ||
|
||
```bash | ||
brew install node@22 | ||
brew link node@22 | ||
brew install pnpm | ||
``` | ||
|
||
Before making changes, prepare automatic pre-commit hooks: | ||
|
||
```bash | ||
pnpm prepare | ||
``` | ||
|
||
To run the development server: | ||
|
||
```bash | ||
# Install dependencies | ||
pnpm install | ||
|
||
# Start the development server | ||
pnpm dev | ||
``` | ||
|
||
Then open [http://localhost:5173](http://localhost:5173) with your browser to see the result. | ||
|
||
|
||
For linting run: | ||
|
||
```bash | ||
pnpm lint | ||
``` |