A modern web application for Nodexeus Technologies, showcasing blockchain and AI hosting solutions with integrated Stripe payment processing.
- Next.js 14 (App Router)
- TypeScript
- Mantine UI v8.3.9
- Stripe
- Vitest + fast-check for testing
- Install dependencies:
npm install- Set up environment variables:
cp .env.example .env.local- Run the development server:
npm run dev- Open http://localhost:3000 in your browser.
Run tests:
npm testRun tests in watch mode:
npm run test:watchnpm run build
npm startBuild the Docker image:
docker build -t nodexeus-website .Run the container:
docker run -p 3000:3000 -e STRIPE_SECRET_KEY=your_key nodexeus-website