https://github.com/getappmap/codechallenge.ai
Live evaluation and comparison of AI code analysis providers
https://github.com/getappmap/codechallenge.ai
Last synced: 9 months ago
JSON representation
Live evaluation and comparison of AI code analysis providers
- Host: GitHub
- URL: https://github.com/getappmap/codechallenge.ai
- Owner: getappmap
- License: mit
- Created: 2024-04-02T19:51:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-09T20:48:10.000Z (about 2 years ago)
- Last Synced: 2025-06-24T02:04:49.081Z (12 months ago)
- Language: TypeScript
- Size: 169 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Getting Started
Requirements:
- Node 20+
- Docker
Build the project:
```bash
yarn
```
Start the database and load the environment:
```bash
eval $(./dev.sh)
```
Verify the environment:
```bash
echo $DATABASE_URL
echo $PGPORT
```
Build and load the schema:
```bash
yarn prisma generate && yarn prisma db push
```
Load the fixture data:
```bash
yarn node prisma/loadFixtures.js
```
Now you can run the development server:
```bash
yarn dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the app.
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the
file.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to
automatically optimize and load Inter, a custom Google Font.
## Deployment
The project is deployed automatically to Heroku by the GitHub Actions workflow.
Note that schema updates have to be pushed manually.