Namebase helps founders generate unique name ideas, available domain names, creative logos, and even sales collateral for their startups.
git clone https://github.com/alanagoyal/namebase
This project uses Supabase as a backend. To set up the database, create a new project, enter your project details, and wait for the database to launch. Navigate to the SQL editor in the dashboard, paste the SQL from the migration file into the SQL editor and press run. You can also use the Supabase CLI to do this locally.
Grab the project URL and anon key from the API settings and put them in a new .env.local
file in the root directory as shown:
NEXT_PUBLIC_SUPABASE_URL="<your-supabase-url>"
NEXT_PUBLIC_SUPABASE_ANON_KEY="<your-anon-key>"
This project uses the following APIs:
- OpenAI for chat completions and image generation
- Braintrust for logging & evals
- Markprompt to power the AI customer support chatbot
- Onedoc to generate the PDF one-pager documents
- WHOXY to fetch available domain names
For each, you can sign up for a free account, grab your API key, and paste it into .env.local
.
Run npm install
to install the dependencies
Run npm run dev
and open http://localhost:3000 to start developing locally.
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.