The Next.js frontend for MethodConf. The Umbraco CMS lives in sgfdevs/cms.methodconf.com.
- Copy
.env.exampleto.envand configure the CMS and site URLs. - Install dependencies and start the development server:
npm ci
npm run devThe production image can be built locally with:
docker build \
--build-arg NEXT_PUBLIC_UMBRACO_BASE_URL=https://cms.methodconf.com/ \
--build-arg NEXT_PUBLIC_SITE_URL=https://www.methodconf.com/ \
-t methodconf.com .