AutoGPT/rnd/autogpt_builder
Zamil Majdy b1347a92de
fix(rnd): Fix execution error on non-saved agent (#8054)
2024-09-16 19:35:31 +00:00
..
.vscode feat(builder): Addition of prettier for aligned of development styles (#7629) 2024-08-05 09:14:02 +02:00
public tweak(rnd): Update AutoGPT logo file to be larger (#7408) 2024-07-13 21:08:09 +01:00
src fix(rnd): Fix execution error on non-saved agent (#8054) 2024-09-16 19:35:31 +00:00
.env.example Fixing docker setup for local testing (#8026) 2024-09-10 15:46:22 +02:00
.eslintrc.json Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01:00
.gitignore feat(builder): sentry integration (#8053) 2024-09-16 23:19:52 +07:00
.prettierignore feat(builder): Addition of prettier for aligned of development styles (#7629) 2024-08-05 09:14:02 +02:00
.prettierrc clean(builder): learned we should be using this to keep our tailwind classes sorted (#7836) 2024-08-21 05:14:21 -05:00
Dockerfile Fixing docker setup for local testing (#8026) 2024-09-10 15:46:22 +02:00
README.md fix(builder): Apply Prettier Formatting (#7695) 2024-08-05 09:18:08 +02:00
components.json fix(builder): Apply Prettier Formatting (#7695) 2024-08-05 09:18:08 +02:00
next.config.mjs feat(builder): sentry integration (#8053) 2024-09-16 23:19:52 +07:00
package.json feat(builder): sentry integration (#8053) 2024-09-16 23:19:52 +07:00
postcss.config.mjs Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01:00
sentry.client.config.ts feat(builder): sentry integration (#8053) 2024-09-16 23:19:52 +07:00
sentry.edge.config.ts feat(builder): sentry integration (#8053) 2024-09-16 23:19:52 +07:00
sentry.server.config.ts feat(builder): sentry integration (#8053) 2024-09-16 23:19:52 +07:00
tailwind.config.ts fix(builder): Apply Prettier Formatting (#7695) 2024-08-05 09:18:08 +02:00
tsconfig.json Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01:00
webpack.config.js fix(builder): Apply Prettier Formatting (#7695) 2024-08-05 09:18:08 +02:00
yarn.lock feat(builder): sentry integration (#8053) 2024-09-16 23:19:52 +07:00

README.md

This is the frontend for AutoGPT's next generation

Getting Started

Run the following installation once.

npm install
# or
yarn install
# or
pnpm install
# or
bun install

Next, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

For subsequent runs, you do not have to npm install again. Simply do npm run dev.

If the project is updated via git, you will need to npm install after each update.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Deploy

TODO