A professional Integrated Development Environment (IDE) for constructed languages.
Follow these steps to set up the project locally:
Ensure you have Node.js (v18 or higher) installed.
Clone the repository and install dependencies:
npm installCreate a .env file in the root directory (or use .env.local) and add your Google Gemini API Key:
GEMINI_API_KEY=your_api_key_hereStart the development server:
npm run devThe application will be available at http://localhost:3000.
To create an optimized production build:
npm run buildThe output will be in the dist/ directory.
- React 18 with TypeScript
- Vite (Build tool)
- Tailwind CSS (Styling)
- Lucide React (Icons)
- Google Generative AI SDK (@google/generative-ai)
- Recharts (Visualizations)
/src: Application source code/components: UI components/services: API and business logic/types.ts: TypeScript definitions/i18n.tsx: Internationalization logic
/public: Static assetsindex.html: Entry pointvite.config.ts: Vite configurationtailwind.config.js: Tailwind styling configuration