Chord OMS
...
Developer Tools
Next.js
Quick Start
5min
this guide assumes you already have node js and git installed on your machine configure access to chord's private github repositories in order to install the necessary chord packages, follow the guide below on how to configure your package manager to access chord's packages npm access for @chordcommerce packages docid\ fm833n8omgr3pwlk8hvpq create a new site click the "use this template" button on the starter github repository to create a new github repository in your account with the same files and folders, or fork the repo then clone your new repo onto your local machine \# with git git clone git\@github com \<your account>/nextjs starter autonomy git \# or with the github cli gh repo clone \<your account>/nextjs starter autonomy configure your site's environment cp env example env you'll need to populate this env file with some environment variables, including your chord account and cms credentials talk to the chord team to get these start your development server install project dependencies yarn yarn installnpm install after installation is complete, start the development server yarn yarn dev # starts site at http //localhost 3000npm run dev # starts site at http //localhost 3000 you can see your new site at http //localhost 3000 hot reload is enabled by default that's it! you're off and running ✨