From 5e125b89f794ee8893077d9186f200379a83f6cc Mon Sep 17 00:00:00 2001 From: Clint Plummer Date: Sun, 4 Feb 2024 11:48:08 +1100 Subject: [PATCH] Update README [skip ci] --- README.md | 52 +++++++++++++++++++++++++++++++++------------------- 1 file changed, 33 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 627f5ac..fa6a0ed 100644 --- a/README.md +++ b/README.md @@ -1,37 +1,51 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). +# clintp.xyz - my bio site  ![test, build and deploy site](https://github.com/yuhonas/clintp.xyz/workflows/test,%20build%20and%20deploy%20site/badge.svg) ## Getting Started -First, run the development server: +This is a simple one page bio site that uses [Next.js](https://nextjs.org/) with some basic CI/CD using [github actions](./.github/workflows/ci.yml). The site & resume are built from a single JSON file [resume.clintp.json](./resume/resume.clintp.json) that conforms to [JSON Resume](https://jsonresume.org/) -```bash + + +### Prerequisites + +* Node.js 20.x + +### Installing + +Install dependencies + +``` +npm install +``` + +## Development + +To run a local web server for development + +``` npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev ``` -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. +## Running linting & the tests -You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. +``` +npm run test +``` + +## Deployment -[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. -The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. +This site is automatically built and deployed by [github actions](https://github.com/actions) to [Github Pages](https://pages.github.com/) -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. -## Learn More +## Building the resume -To learn more about Next.js, take a look at the following resources: +My resume is built using [docxtemplater](https://docxtemplater.com/) it's optimized for [Applicant Tracking Systems (ATS)](https://en.wikipedia.org/wiki/Applicant_tracking_system) -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. +``` +npm run build:resume: +``` -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! ## Deploy on Vercel