Installation
This guide covers the installation process for ObjectOS.
System Requirements
- Node.js: 18.0 or higher
- Package Manager: pnpm (recommended)
- Operating System: Linux, macOS, or Windows
Installation Steps
1. Clone the Repository
git clone https://github.com/objectstack-ai/objectos.git
cd objectos
2. Install Dependencies
pnpm install
3. Build the Project
pnpm build
4. Start Development Server
pnpm dev
The application will be available at http://localhost:3000.
Verify Installation
To verify that ObjectOS is installed correctly, run:
pnpm test
All tests should pass successfully.
Next Steps
Now that you have ObjectOS installed, explore the documentation to learn more about:
- Architecture - Understand the system design
- Configuration - Configure ObjectOS for your needs
- Development - Start building with ObjectOS
Troubleshooting
If you encounter any issues during installation:
- Ensure you have the correct Node.js version
- Clear your pnpm cache:
pnpm store prune - Delete
node_modulesand reinstall:rm -rf node_modules && pnpm install - Check the GitHub Issues for similar problems