cloudflare/d1-northwind

Public

mirrored fromhttps://github.com/cloudflare/d1-northwindAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
89fb3197f63570a24a1ef18f92a246a1869fe29e

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

package.json

17lines · modecode

1{
2 "name": "d1-northwind",
3 "version": "2.0.0",
4 "private": true,
5 "scripts": {
6 "db:new": "NO_D1_WARNING=true wrangler d1 create northwind --experimental-backend",
7 "db:init": "NO_D1_WARNING=true wrangler d1 execute northwind --file=./db/schema.sql",
8 "db:load": "NO_D1_WARNING=true wrangler d1 execute northwind --file=./db/data-big.sql --batch-size=50000"
9 },
10 "workspaces": [
11 "worker",
12 "frontend"
13 ],
14 "devDependencies": {
15 "wrangler": "^3.0.1"
16 }
17}
18