<<<<<<< HEAD
J.A.R.V.I.S is an AI-powered assistant that unifies all your productivity, creativity, and smart home tools into one intelligent voice interface. Our mission is to simplify the future by bringing powerful AI and IoT technology together — private, personalized, and always within reach.You can chat with it, talk to it, and use it to control tasks or even smart devices.
- Conversational AI powered by OpenAI and Google Gemini APIs.
- Voice Assistant Mode – speak to JARVIS and hear it reply.
- User Authentication
- Login with Google, Microsoft, or Phone number.
- Chat History – conversations are stored so you can pick up where you left off.
- Task Scheduler – create and manage tasks via chat.
- IoT Integration (planned) – detect and connect with smart home devices.
- Modern UI with holographic orb animations and dark theme.
React + TailwindCSS Framer Motion (animations) Shadcn UI Components
Node.js + Express Passport.js for authentication MySQL / Neo4j for data storage OpenAI + Google Generative AI SDKs
jarvis-main/ │── README.md # Documentation │── package.json # Frontend dependencies │── jarvis-server/ # Backend (Express + DB + APIs) │ ├── index.js # Server entry │ ├── db.js # Database connection │ ├── config/ # Auth configs │ ├── controllers/ # API controllers │ ├── models/ # Database models
git clone https://github.com/your-username/jarvis-main.git cd jarvis-main
Frontend npm install
Backend cd jarvis-server npm install
Create a .env file in jarvis-server/ with: PORT=5000 DB_URI=your_mysql_or_neo4j_connection_string OPENAI_API_KEY=your_openai_key GEMINI_API_KEY=your_google_gemini_key SESSION_SECRET=your_secret
Backend cd jarvis-server npm start
Frontend cd jarvis-ui npm start Frontend runs at http://localhost:3000 Backend runs at http://localhost:5000
Open http://localhost:3000 Sign up or login (Google/Microsoft/Phone). Click Launch Assistant to start the hologram orb. Use voice or text chat to talk to JARVIS. Create tasks, ask questions, or control devices.
- IoT-Intergration and Detection.
- More AI models support.
- Mobile app version.
- Multi-language voice support
- Smart calendar integration (Google/Outlook)
- Personalization (custom wake word, theme, voice)
- Plugin system for third-party integrations (Spotify, Weather, News)
=======
Welcome to your new ic-jarvis project and to the Internet Computer development community. By default, creating a new project adds this README and some template files to your project directory. You can edit these template files to customize your project and to include your own code to speed up the development cycle.
To get started, you might want to explore the project directory structure and the default configuration file. Working with this project in your development environment will not affect any production deployment or identity tokens.
To learn more before you start working with ic-jarvis, see the following documentation available online:
If you want to start working on your project right away, you might want to try the following commands:
cd ic-jarvis/
dfx help
dfx canister --helpIf you want to test your project locally, you can use the following commands:
# Starts the replica, running in the background
dfx start --background
# Deploys your canisters to the replica and generates your candid interface
dfx deployOnce the job completes, your application will be available at http://localhost:4943?canisterId={asset_canister_id}.
If you have made changes to your backend canister, you can generate a new candid interface with
npm run generateat any time. This is recommended before starting the frontend development server, and will be run automatically any time you run dfx deploy.
If you are making frontend changes, you can start a development server with
npm startWhich will start a server at http://localhost:8080, proxying API requests to the replica at port 4943.
If you are hosting frontend code somewhere without using DFX, you may need to make one of the following adjustments to ensure your project does not fetch the root key in production:
- set
DFX_NETWORKtoicif you are using Webpack - use your own preferred method to replace
process.env.DFX_NETWORKin the autogenerated declarations- Setting
canisters -> {asset_canister_id} -> declarations -> env_override to a stringindfx.jsonwill replaceprocess.env.DFX_NETWORKwith the string in the autogenerated declarations
- Setting
- Write your own
createActorconstructor
0638272 (Added ic-jarvis dfx project)




