carbon
carbon copied to clipboard
Compile and run Carbon locally
Question I want to run carbon source code on my computer locally.
Problem Where is the entry point for npm and which command do I use to get next js to run?
You need npm and yarn installed
After that you must install dependices. Execute at root project folder:
yarn install
And start project using npm:
npm run dev
You'll see something like that:
❯ npm run dev
> [email protected] dev
> next
ready - started server on 0.0.0.0:3000, url: http://localhost:3000
Thanks @OkeyDev!