Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/denoland/doc_website
Archived. New version at https://github.com/denoland/docland
https://github.com/denoland/doc_website
deno
Last synced: 3 months ago
JSON representation
Archived. New version at https://github.com/denoland/docland
- Host: GitHub
- URL: https://github.com/denoland/doc_website
- Owner: denoland
- License: mit
- Archived: true
- Created: 2020-03-18T13:17:32.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-06-21T10:02:22.000Z (over 2 years ago)
- Last Synced: 2024-09-23T21:04:33.368Z (3 months ago)
- Topics: deno
- Language: TypeScript
- Homepage: https://doc.deno.land/
- Size: 5.85 MB
- Stars: 194
- Watchers: 21
- Forks: 43
- Open Issues: 48
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deno_doc frontend
This website is built with [Next.js](https://nextjs.org) and automatically deploys to [Vercel](https://vercel.com).
### Contributing
Install [Vercel CLI](https://vercel.com/download) and run `vercel dev`. Currently not supported on Windows, see (https://github.com/lucacasonato/now-deno/issues/12)
For this to run succesfully you will need to change the `functions` object of the `vercel.json` file to:
```json
{
"functions": {
"api/**/*.ts": {
"runtime": "[email protected]",
"maxDuration": 10
}
},
```To install dependencies via npm, you must run `npm install` with the `--legacy-peer-deps` flag.