This is the entry point to start an LLM-powered chatbot enabling groups to co-ordinate, reduce friction and move forward.
Please check harmonica.chat for more information.
This project is still under early development and not all functionality is available yet.
Make sure you have the following installed on your machine:
- Node.js
- npm (Node Package Manager)
-
Clone the repository:
git clone https://github.com/harmonicabot/harmonica-web-app.git cd harmonica-web-app
-
Install the dependencies:
npm install
This project is using a mix of make.com & drizzle+postges neon databases. To update the pg db schema with drizzle:
- (Install drizzle:
npm i drizzle-kit
) <-- it's in our package.json, so should already be installed by now - Update
./src/lib/schema.ts
- Run
npx drizzle-kit generate
--> This will generate a SQL migration file - Run
npx drizzle-kit migrate
--> This will update the db schema - Run
npx drizzle-kit push
--> Update it on the host - Commit the changes to
./src/lib/schema.ts
In the project directory, you can run the following scripts:
npm run dev
Starts the development server. Open http://localhost:3000 to view it in your browser. The page will reload if you make edits. You will also see any lint errors in the console.
npm run build
Builds the app for production. It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes. Your app is ready to be deployed!
npm start
Runs the built app in production mode. This command should be run after building the app using npm run build
.