carbon icon indicating copy to clipboard operation
carbon copied to clipboard

Compile and run Carbon locally

Open realhackcraft opened this issue 3 years ago • 1 comments

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?

realhackcraft avatar Aug 12 '22 13:08 realhackcraft

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 

OkeyDev avatar Sep 10 '22 07:09 OkeyDev

Thanks @OkeyDev!

mfix22 avatar Nov 07 '22 01:11 mfix22