Download NeoSaaS from GitHub
Get the latest version of NeoSaaS directly from our GitHub repository
Latest Version
Prerequisites
Before downloading, ensure you have:
- Node.js 18+ and npm installed
- Next.js 16+
- Tailwind CSS
- Git (optional, for cloning)
git clone https://github.com/neosaastech/neosaas.gitAfter cloning, navigate to the directory and install dependencies:
cd neosaas
npm installIf you prefer not to use Git, you can download the repository as a ZIP file directly from GitHub.
Download Latest Version1. Download the repository
Clone or download the repository using one of the methods above.
2. Install dependencies
npm install3. Configure environment variables
Copy the .env.example file to .env and configure your environment variables.
cp .env.example .env4. Setup Prisma database
NeoSaaS includes an integrated Prisma database. Run the following commands to set it up:
npx prisma generate
npx prisma db push5. Start the development server
npm run devYour application will be available at http://localhost:3000
Visit our GitHub repository to view the source code, check releases, report issues, and contribute to the project.
Visit GitHub Repository