A grass-to-glass tutorial on how to build with CoW Protocol.
This repo uses yarn.
First, run node scripts/create-common-bundle
. This packages up everything that's needed to run the app within the webcontainer (Vite, typescript, CoW dependencies, etc.) which can subsequently be unpacked on a server to create and run an instance of a CoW application (which powers the output window of the tutorial). Then, run dev
:
node scripts/create-common-bundle
yarn dev
To build for production and run locally:
yarn build
yarn preview
Tutorials live inside content
. Each tutorial consists of a README.md
, which is the text to the left, and app-a
and app-b
folders, which represent the initial and solved state. Files that stay the same can be omitted from app-b
. Files are marked as deleted in app-b
if they start with __delete
. Folders that are marked as deleted in app-b
if they contain a file named __delete
.
Bump the dependency (for example cow-sdk
) in both the root and the content/common
package.json
. In the root do yarn
(to update yarn.lock
), in content/common
do yarn
(to update yarn.lock
).
These tutorials build off of the excellent work from the team who created the SvelteKit tutorials. Without their work, this would not have been possible.