Final Steps
Database Setup (Optional)
If you need to set up a local PostgreSQL database
You can start a PostgreSQL database using the provided script:
./start-database.sh
This will create a Docker container with PostgreSQL installed and configured according to your environment variables.
Populate your database
Push the database schema to your PostgreSQL instance:
- pnpm
- npm
- yarn
pnpm db:push
npm run db:push
yarn db:push
Start the local server
Start your development server:
- pnpm
- npm
- yarn
pnpm dev
npm run dev
yarn dev
The command should output something like this:
▲ Next.js 15.0.1
- Local: http://localhost:3000
- Environments: .env.local
✓ Starting...
✓ Ready in 2.4s
If you see this output, you can CTRL + Click on http://localhost:3000 or manually open it in your browser.
That's it! 🎉
Congratulations! You've successfully set up the project locally. You can now start customizing the application and building your product!
warning
If you encounter any errors during this process, please:
- Verify your environment variables are correctly set
- Ensure all dependencies are installed
- Check your database connection (if using a database)
For additional help, feel free to open an issue in the repository.