AutoGPT/rnd/autogpt_builder
SwiftyOS c95b3ad15d Updated docker setup 2024-09-09 17:57:59 +02:00
..
.storybook revert changes to builder 2024-09-09 16:26:22 +02: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 revert changes to builder 2024-09-09 16:26:22 +02:00
.env.example Updated docker setup 2024-09-09 17:57:59 +02:00
.eslintrc.json Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01:00
.gitignore Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01: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 Updated docker setup 2024-09-09 17:57:59 +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): checkbox for tos on login page and submit agent (#7745) 2024-08-20 07:04:22 -05:00
package.json feat(builder): promotion/demotion of featured agents (#7932) 2024-09-05 20:04:11 +00:00
postcss.config.mjs Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01: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 Updated docker setup 2024-09-09 17:57:59 +02: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