Get Started
Welcome to the DevRocket documentation. This is your starting point for learning about the starter kit, its structure, features, and how to use it for web app development.
Get Started
Welcome to DevRocket 🚀! This boilerplate helps you build and launch your SaaS product in record time using Angular for the frontend and NestJS for the backend. Follow this quick start guide to set up your app and start building your dream project FAST ⚡️.
Once you're done with setup, check out the 5-minute tutorial to get your startup live.
You're browsing the
/frontendand/backendsetup documentation. If you're looking for other specific setups, refer to their individual sections.
Start a Local Server
1. Clone the repository and install dependencies
Open your terminal and run the following commands one by one:
Note: This project requires Node.js 18.17 or greater. You can check your Node.js version by running:
2. Configure environment variables
In both the frontend and backend folders, you will need to configure environment variables.
For NestJS (backend), create a .env.local file by copying the .env.example:
For Angular (frontend), set up any necessary environment variables by adjusting the .env or src/environments/environment.ts file.
3. Run the application
To start the backend (NestJS) server, run:
To start the frontend (Angular) server, run:
Now, open your browser and navigate to http://localhost:4200 for the frontend and http://localhost:3000 for the backend (if needed). Your app should now be running!
You might see console errors during development. Don’t worry—they’re not critical.