Get up and running with RealmKit in under 10 minutes. This guide will take you from installation to having a fully functional project running locally.
Make sure you have these installed before starting
Get the command line tool installed on your system
npm install -g @realmkit/clirealmkit --versionExplore the available project templates
realmkit list
realmkit search saasrealmkit info saas-starterGenerate a new project from a realm template
realmkit create saas-starter my-awesome-appcd my-awesome-app && ls -laSet up the project dependencies
cd my-awesome-app
npm installnpm list --depth=0Launch the development server
npm run devOpen http://localhost:3000Your new project comes with everything you need to start building
Complete SaaS application with auth, payments, and admin panel
realmkit create saas-starter my-saasModern blog with MDX support and SEO optimization
realmkit create nextjs-blog my-blogRESTful API with authentication and database integration
realmkit create api-starter my-apiFull-featured online store with payment processing
realmkit create e-commerce my-storeNow that you have a project running, here's how to make it your own
Common problems and solutions for getting started
If realmkit command is not recognized:
npx @realmkit/cli --versionIf realm creation doesn't work:
realmkit list