This is a fully responsive website.
Below is the documentation for using agora analytics on localhost PC
(Make sure to add the path of MySQL bin folder)
Open Mysql workbench and lighten the following code lines on by one
create database agora;
use agora;
create table loginData(
id varchar(100) PRIMARY KEY,
company varchar(100),
email varchar(100),
pass varchar(100)
);
Open a new folder and type the following commands in terminal window for cloning the Agora project and setting up the dependencies
git init
git clone https://github.com/VasuOOCh/Agora.git
npm install
Make sure to update the following changes in index.js file
const anthropic = new Anthropic({
apiKey: 'Enter your API key here', // Enter your Claude AI key
});const connection = mysql.createConnection({
host: 'localhost',
user: 'root',
database: 'agora',
password : "password" //Enter your MySQL server password
});node index.js
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
- @anthropic-ai/sdk": "^0.19.0"
- ejs: "^3.1.9"
- express: "^4.19.1"
- method-override: "^3.0.0"
- mysql2: "^3.9.2"
- uuidv4: "^6.2.13"









