# Clone the repository
git clone https://github.com/cadot-eu/warp-alternative.git
cd warp-alternative
# Install dependencies
npm install
Copy the example environment file and configure your API keys:
cp .env.example .env.local
# Edit .env.local with your credentials
Start the development environment with hot reloading:
# Start Next.js dev server
npm run dev
# In another terminal, start WebSocket server
npm run terminal-server
Access the application at http://localhost:3000
Build and run the optimized production version:
# Build the application
npm run build
# Start production server
npm start
# Don't forget the terminal server
npm run terminal-server
warp-alternative includes comprehensive testing with Jest. Run tests to ensure everything works correctly:
# Run all tests
npm test
# Run tests with coverage report
npm run test:coverage
# Run tests in watch mode
npm run test:watch
# Lint the codebase
npm run lint
Open an issue or contact the maintainer for questions or suggestions.
GitHub Issues