Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scrypt-inc/scrypt-by-example.github.io
An introduction to the sCrypt Bitcoin scripting language.
https://github.com/scrypt-inc/scrypt-by-example.github.io
Last synced: about 1 month ago
JSON representation
An introduction to the sCrypt Bitcoin scripting language.
- Host: GitHub
- URL: https://github.com/scrypt-inc/scrypt-by-example.github.io
- Owner: sCrypt-Inc
- License: mit
- Created: 2021-12-23T08:19:53.000Z (about 3 years ago)
- Default Branch: gh-pages
- Last Pushed: 2023-01-10T03:01:26.000Z (about 2 years ago)
- Last Synced: 2024-11-05T09:37:33.152Z (3 months ago)
- Language: TypeScript
- Size: 1.96 MB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# scrypt-by-example.github.io
[sCrypt By Example](https://scrypt-by-example.scrypt.io)
### License
[MIT License](LICENSE)
### Memo
```shell
## Deploy ##
# md to react
npx ts-node --project ./scripts/tsconfig.json scripts/md-to-react.ts src/pages/array# md to react all pages
find src/pages -type d -not -path "*/__snapshots__" -exec npx ts-node --project ./scripts/tsconfig.json scripts/md-to-react.ts {} \;# build routes
npx ts-node --project ./scripts/tsconfig.json scripts/build-routes.ts# deploy
npm run deploy## Misc ##
# rename files
find . -type f -name "index.test.js" -exec sh -c 'mv "$0" "${0%.test.js}.test.tsx"' {} \;
```