Coderbunker Canada landing page
Brief: https://docs.google.com/document/d/1xpbedH1DP_uP1s9IhstSerLtQEcD-CYtuRYbqVcE-C8/edit#
Production: coderbunker.ca
Staging: coderbunker-staging.netlify.app
- Wireframe (Phase 1): figma
- One-pager (Phase 1): Pull Request
- Refer to this issue
- Phase 2: To be envisioned
Continuous Deployment on Netlify of the main branch of this repo (i.e. everytime code got merged onto the main branch, it will trigger a rebuild on Netlify.
Changes can be seen 👉 coderbunker.ca
To be added to Netlify, contact carmenhyng89@gmail.com
Continuous Deployment of the staging branch on Netlify (similar to above, but with the staging branch)
Changes can be seen 👉 coderbunker-staging.netlify.app
Note that Netlify has limits on build minutes. Go with gh-pages first.
Changes can be seen 👉 coderbunker.github.io/coderbunker.ca
gatsby clean
npm run deploy
or
gatsby clean
gatsby build --prefix-paths && gh-pages -d public -r git@github.com:coderbunker/coderbunker.ca.git
npm run build
or
gatsby build
coderbunker
├── locales
│ ├── en
│ │ └── translation.json // 👈 add EN string here
│ └── fr
│ └── translation.json // 👈 add FR string here
├── src
│ ├── assets
│ │ ├── content
│ │ │ └── team.json // 👈 add team member info here
│ │ ├── fonts
│ │ ├── images
│ │ │ └── team // 👈 add team member image here
│ │ │ ├── 001_ricky_ng_adam.jpg
│ │ │ └── 002_etc...
│ │ └── pdfs // 👈 add the Retainer Agreement here
│ ├── components
│ │ ├── button.js
│ │ └── // reusable components, etc...
│ ├── pages
│ │ ├── 404.js
│ │ └── index.js
│ ├── pdfs
│ │ └── placeholder.pdf
│ └── styles
└── gatsby-browser.js