├── .github └── workflows │ ├── backend.yml │ ├── book.yml │ └── frontend.yml ├── .gitignore ├── LICENSE ├── README.md ├── backend ├── cover.png ├── package.json ├── serverless.ts ├── src │ ├── cmd.ts │ ├── config.ts │ ├── functions │ │ ├── get-findings-code4rena.ts │ │ └── get-findings-sherlock.ts │ ├── generate-from-md-to-epub.ts │ └── save-book-content-to-disk.ts ├── tsconfig.json ├── tsconfig.paths.json └── yarn.lock └── frontend ├── index.html └── public ├── 1f4c3.svg ├── 1f510.svg ├── 1f9d9-1f3fc-200d-2642-fe0f.svg ├── bookimg.png ├── github.svg ├── main.b7d6d066009d.css ├── main.cf5c01d8b6b7.js ├── screen-shot-2022-11-29-at-09.50.33.png ├── the-auditor-book.png └── twitter.svg /.github/workflows/backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/.github/workflows/backend.yml -------------------------------------------------------------------------------- /.github/workflows/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/.github/workflows/book.yml -------------------------------------------------------------------------------- /.github/workflows/frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/.github/workflows/frontend.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/README.md -------------------------------------------------------------------------------- /backend/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/cover.png -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/serverless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/serverless.ts -------------------------------------------------------------------------------- /backend/src/cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/src/cmd.ts -------------------------------------------------------------------------------- /backend/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/src/config.ts -------------------------------------------------------------------------------- /backend/src/functions/get-findings-code4rena.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/src/functions/get-findings-code4rena.ts -------------------------------------------------------------------------------- /backend/src/functions/get-findings-sherlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/src/functions/get-findings-sherlock.ts -------------------------------------------------------------------------------- /backend/src/generate-from-md-to-epub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/src/generate-from-md-to-epub.ts -------------------------------------------------------------------------------- /backend/src/save-book-content-to-disk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/src/save-book-content-to-disk.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /backend/tsconfig.paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/tsconfig.paths.json -------------------------------------------------------------------------------- /backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/backend/yarn.lock -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/public/1f4c3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/1f4c3.svg -------------------------------------------------------------------------------- /frontend/public/1f510.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/1f510.svg -------------------------------------------------------------------------------- /frontend/public/1f9d9-1f3fc-200d-2642-fe0f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/1f9d9-1f3fc-200d-2642-fe0f.svg -------------------------------------------------------------------------------- /frontend/public/bookimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/bookimg.png -------------------------------------------------------------------------------- /frontend/public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/github.svg -------------------------------------------------------------------------------- /frontend/public/main.b7d6d066009d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/main.b7d6d066009d.css -------------------------------------------------------------------------------- /frontend/public/main.cf5c01d8b6b7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/main.cf5c01d8b6b7.js -------------------------------------------------------------------------------- /frontend/public/screen-shot-2022-11-29-at-09.50.33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/screen-shot-2022-11-29-at-09.50.33.png -------------------------------------------------------------------------------- /frontend/public/the-auditor-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/the-auditor-book.png -------------------------------------------------------------------------------- /frontend/public/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggiano/theauditorbook/HEAD/frontend/public/twitter.svg --------------------------------------------------------------------------------