Skip to content

Commit

Permalink
Merge pull request #33 from bleu/joao/op-108-ui-fixes
Browse files Browse the repository at this point in the history
Joao/op 108 UI fixes
  • Loading branch information
devjoaov authored Aug 28, 2024
2 parents 009ca87 + 7afccf9 commit eae3817
Show file tree
Hide file tree
Showing 23 changed files with 797 additions and 517 deletions.
2 changes: 1 addition & 1 deletion www/.envrc.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export NEXT_PUBLIC_API_MOCKING=false
export NEXT_PUBLIC_POSTHOG_KEY=""
export NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com
export NEXT_PUBLIC_CHAT_API_URL=http://localhost:3123/predict
export NEXT_PUBLIC_CHAT_API_URL=http://localhost:9090/predict
export DATABASE_URL=postgresql://postgres:postgres@localhost:5432/op-ai-tools
11 changes: 8 additions & 3 deletions www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev": "concurrently 'yarn dev:next' 'yarn start:mock'",
"dev:next": "next dev",
"build": "next build",
"start": "next start",
"lint:fix": "yarn biome check --write ./src",
"prisma:reset": "ts-node prisma/reset.ts",
"prisma:migrate": "prisma migrate dev",
"prisma:console": "prisma-repl",
"postinstall": "prisma generate"
"postinstall": "prisma generate",
"start:mock": "ts-node src/mocks/index.ts"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
Expand All @@ -35,6 +37,7 @@
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"geist": "^1.3.1",
"immer": "^10.1.1",
"lucide-react": "^0.427.0",
"next": "^15.0.0-rc.0",
"posthog-js": "^1.155.0",
Expand All @@ -50,7 +53,8 @@
"react-resizable-panels": "^2.0.23",
"readline": "^1.3.0",
"tailwind-merge": "^2.5.0",
"tailwindcss-animate": "^1.0.7"
"tailwindcss-animate": "^1.0.7",
"zustand": "^4.5.5"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
Expand All @@ -63,6 +67,7 @@
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"eslint": "^9",
"eslint-config-next": "14.2.5",
Expand Down
8 changes: 4 additions & 4 deletions www/postcss.config.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};

export default config;
Loading

0 comments on commit eae3817

Please sign in to comment.