noc-book-2/README.md

20 lines
669 B
Markdown
Raw Normal View History

2022-07-22 17:21:32 +02:00
# The Nature of Code 2nd Edition
2022-07-20 21:19:04 +02:00
2022-07-22 17:21:32 +02:00
This repo contains all the files for the Nature of Code 2nd edition. The book is now being authored in Notion and imported here as raw HTML files (which are then used to build the print PDF and gatsby website).
Following are the steps to build the book and website, however, you will have to skip the `import-notion-docs` as that can only be done with the Notion API key associated with the book. You can find the latest HTML version of the book in `/content`.
2022-07-21 03:39:22 +02:00
```bash
# Install Dependencies
npm install
# Import Notion Pages
npm run import-notion-docs
# Build PDF (Magicbook)
npm run build:pdf
# Build Website
npm run build
```