The DDD Perth website is deployed to https://dddperth.com and is built using Next.js.
- Checkout repository on your machine - ensure you have Node.js and Yarn installed
- Run
yarn
in the repository root (to restore npm packages) - Run
yarn run dev
to start a local dev environment that watches for changes and supports Hot Module Replacement / Hot Reloading - Use Visual Studio Code as the prefered dev environment - breakpoint debugging should work and you should be able to run the "Start Dev Webserver" task to get it to run the dev environment
- Note:
package.json
has some URLs defined in thedev
task that reference the backend API
- Checkout code
- Run
yarn
- Run
yarn build
- Grab the
.next
directory and deploy to the destination - Run
yarn
in the deploy folder and deploy all files from there alongside the.next
directory (the web.config file is targeted towards Azure Web Apps)
/
- Usual array of .json and other config files for a JavaScript / TypeScript project/.vscode
- VS Code config files including tasks, launch/debugging settings and extension recommendations/components
- Reusable UI components used within pages/components/global
- UI components that make up the global layout of the site/components/utils
- Utility functions
/config
- Configuration of the conference-specific data/deploy
- Files used to deploy the app to Azure Web Apps/layouts
- Page layouts/pages
- The pages themselves, these turn into URLs as per Next.js convention/static
- Static assets/styles
- Stylesheets
To re-purpose for another conference:
- Update the files in the
config
directory - Update
$primaryColour
instyles/colours-and-fonts.scss
(and other styles as you desire) - Update the images in the
static
directory and sub directories - Update
pages/about.tsx
,pages/sponsorship.tsx
,pages/cfp.tsx
andpages/agenda/*.tsx
with content specific to your conference
If you want to make tweaks to the pages then inspect the files in the pages
directory and modify from there.
So you’re thinking about contributing to the project? You are awesome! It’s massively appreciated. Before getting started, please take the time to review the contribution guidelines before sending that epic pull request / bug report.