Monorepo for my personal website & projects
- Working WordPress Instance with these plugins installed:
- Add WPGraphQL SEO
- Advanced Custom Fields
Our ACF plugin has been taken over forcibly by wordpressdotorg without our consent.
(NOT Secure Custom Fields) READ MORE- Add The ACF Json within
wp-assets/acf-fields/acf-export.json
- To this page:
/wp-admin/edit.php?post_type=acf-field-group&page=acf-tools
- Faust.js™
- Generate WpGraphql Image DataUrl
- Gravity Forms
- WPGraphQL
- WPGraphQL CORS
- WPGraphQL for ACF
- WPGraphQL for Gravity Forms
- Vercel Account for delpoyment
- Github Account to push code to
- Preview Draft Posts
- Custom ACF Flexible Content Components for Page Building
- Tailwind CSS for styling
- Gravity Forms Component (IN DEVELOPMENT)
- Auth / My Account Page
- More Coming Soon!
This Turborepo includes the following packages/apps:
docs
: a Next.js app (IN DEVELOPMENT)web
: a Headless WordPress website using Faust JS@repo/ui
: a stub React component library shared by bothweb
anddocs
applications@repo/eslint-config
:eslint
configurations (includeseslint-config-next
andeslint-config-prettier
)@repo/typescript-config
:tsconfig.json
s used throughout the monorepo@repo/cb-headless-gravity-forms
: A headless gravity forms component (IN DEVELOPMENT)
Each package/app is 100% TypeScript.
This Turborepo has some additional tools already setup for you:
- TypeScript for static type checking
- ESLint for code linting
- Prettier for code formatting
To build all apps and packages, run the following command:
cd my-turborepo
bun build
To develop all apps and packages, run the following command:
cd my-turborepo
bun dev
Turborepo can use a technique known as Remote Caching to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.
By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can create one, then enter the following commands:
cd my-turborepo
bunx turbo login
This will authenticate the Turborepo CLI with your Vercel account.
Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo:
bunx turbo link
Learn more about the power of Turborepo: