17 lines
464 B
Plaintext
17 lines
464 B
Plaintext
---
|
|
title: Running the Next.js Server
|
|
label: Next.js
|
|
description: Learn how to run the Next.js server on your local machine.
|
|
---
|
|
|
|
First, we can run the Next.js Server by running the following command:
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
If everything goes well, your server should be running at
|
|
[http://localhost:3000](http://localhost:3000).
|
|
|
|
With the server running, we can now set up our Supabase containers using
|
|
Docker. Jump to the next section to learn how to do that. |