create-harper 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/README.md +5 -0
  2. package/index.js +37 -214
  3. package/lib/constants/defaultTargetDir.js +1 -0
  4. package/lib/constants/frameworks.js +75 -0
  5. package/lib/constants/helpMessage.js +23 -0
  6. package/lib/constants/renameFiles.js +7 -0
  7. package/lib/constants/templates.js +6 -0
  8. package/lib/fs/applyAndWriteTemplateFile.js +9 -0
  9. package/lib/fs/copy.js +11 -0
  10. package/lib/fs/copyDir.js +12 -0
  11. package/lib/fs/crawlTemplateDir.js +18 -0
  12. package/lib/fs/emptyDir.js +14 -0
  13. package/lib/fs/formatTargetDir.js +3 -0
  14. package/lib/fs/isEmpty.js +6 -0
  15. package/lib/install.js +17 -0
  16. package/lib/pkg/getInstallCommand.js +6 -0
  17. package/lib/pkg/getRunCommand.js +12 -0
  18. package/lib/pkg/isValidPackageName.js +5 -0
  19. package/lib/pkg/pkgFromUserAgent.js +9 -0
  20. package/lib/pkg/toValidPackageName.js +9 -0
  21. package/lib/run.js +14 -0
  22. package/lib/start.js +15 -0
  23. package/lib/steps/getEnvVars.js +79 -0
  24. package/lib/steps/getImmediate.js +29 -0
  25. package/lib/steps/getPackageName.js +38 -0
  26. package/lib/steps/getProjectName.js +40 -0
  27. package/lib/steps/getTemplate.js +65 -0
  28. package/lib/steps/handleExistingDir.js +61 -0
  29. package/lib/steps/scaffoldProject.js +40 -0
  30. package/lib/steps/showOutro.js +30 -0
  31. package/package.json +20 -8
  32. package/template-barebones/README.md +7 -0
  33. package/template-barebones/_aiignore +1 -0
  34. package/template-barebones/_env +3 -0
  35. package/template-barebones/_env.example +3 -0
  36. package/template-barebones/_gitignore +147 -0
  37. package/template-barebones/config.yaml +7 -0
  38. package/template-barebones/graphql.config.yml +3 -0
  39. package/template-barebones/package.json +14 -0
  40. package/template-barebones/schema.graphql +1 -0
  41. package/template-react/README.md +45 -0
  42. package/template-react/_aiignore +1 -0
  43. package/template-react/_env +3 -0
  44. package/template-react/_env.example +3 -0
  45. package/template-react/_github/workflow/deploy.yaml +40 -0
  46. package/template-react/_gitignore +147 -0
  47. package/template-react/config.yaml +23 -0
  48. package/template-react/deploy-template/config.yaml +2 -0
  49. package/template-react/deploy-template/fastify/static.js +14 -0
  50. package/template-react/deploy-template/package.json +5 -0
  51. package/template-react/graphql.config.yml +3 -0
  52. package/template-react/index.html +13 -0
  53. package/template-react/package.json +25 -0
  54. package/template-react/public/react.svg +14 -0
  55. package/template-react/public/typescript.svg +16 -0
  56. package/template-react/public/vite.svg +42 -0
  57. package/template-react/resources.js +27 -0
  58. package/template-react/schema.graphql +5 -0
  59. package/template-react/src/App.jsx +34 -0
  60. package/template-react/src/main.jsx +13 -0
  61. package/template-react/src/style.css +96 -0
  62. package/template-react/src/vite-env.d.ts +9 -0
  63. package/template-react/vite.config.js +22 -0
  64. package/template-react-ts/README.md +45 -0
  65. package/template-react-ts/_aiignore +1 -0
  66. package/template-react-ts/_env +3 -0
  67. package/template-react-ts/_env.example +3 -0
  68. package/template-react-ts/_github/workflow/deploy.yaml +40 -0
  69. package/template-react-ts/_gitignore +147 -0
  70. package/template-react-ts/config.yaml +23 -0
  71. package/template-react-ts/deploy-template/config.yaml +2 -0
  72. package/template-react-ts/deploy-template/fastify/static.js +14 -0
  73. package/template-react-ts/deploy-template/package.json +5 -0
  74. package/template-react-ts/graphql.config.yml +3 -0
  75. package/template-react-ts/index.html +13 -0
  76. package/template-react-ts/package.json +29 -0
  77. package/template-react-ts/public/react.svg +14 -0
  78. package/template-react-ts/public/typescript.svg +16 -0
  79. package/template-react-ts/public/vite.svg +42 -0
  80. package/template-react-ts/resources.ts +52 -0
  81. package/template-react-ts/schema.graphql +5 -0
  82. package/template-react-ts/src/App.tsx +34 -0
  83. package/template-react-ts/src/main.tsx +13 -0
  84. package/template-react-ts/src/style.css +96 -0
  85. package/template-react-ts/src/vite-env.d.ts +9 -0
  86. package/template-react-ts/tsconfig.json +34 -0
  87. package/template-react-ts/vite.config.ts +22 -0
  88. package/template-studio/README.md +34 -0
  89. package/template-studio/_aiignore +1 -0
  90. package/template-studio/_gitignore +147 -0
  91. package/template-studio/config.yaml +24 -0
  92. package/template-studio/graphql.config.yml +3 -0
  93. package/template-studio/package.json +14 -0
  94. package/template-studio/resources.js +27 -0
  95. package/template-studio/schema.graphql +7 -0
  96. package/template-studio/web/index.html +28 -0
  97. package/template-studio/web/index.js +18 -0
  98. package/template-studio/web/styles.css +57 -0
  99. package/template-studio-ts/README.md +34 -0
  100. package/template-studio-ts/_aiignore +1 -0
  101. package/template-studio-ts/_gitignore +147 -0
  102. package/template-studio-ts/config.yaml +24 -0
  103. package/template-studio-ts/graphql.config.yml +3 -0
  104. package/template-studio-ts/package.json +14 -0
  105. package/template-studio-ts/resources.ts +52 -0
  106. package/template-studio-ts/schema.graphql +7 -0
  107. package/template-studio-ts/tsconfig.json +10 -0
  108. package/template-studio-ts/web/index.html +28 -0
  109. package/template-studio-ts/web/index.js +18 -0
  110. package/template-studio-ts/web/styles.css +57 -0
  111. package/template-vanilla/README.md +57 -0
  112. package/template-vanilla/_aiignore +1 -0
  113. package/template-vanilla/_env +3 -0
  114. package/template-vanilla/_env.example +3 -0
  115. package/template-vanilla/_gitignore +147 -0
  116. package/template-vanilla/config.yaml +24 -0
  117. package/template-vanilla/graphql.config.yml +3 -0
  118. package/template-vanilla/package.json +14 -0
  119. package/template-vanilla/resources.js +27 -0
  120. package/template-vanilla/schema.graphql +7 -0
  121. package/template-vanilla/web/index.html +28 -0
  122. package/template-vanilla/web/index.js +18 -0
  123. package/template-vanilla/web/styles.css +57 -0
  124. package/template-vanilla-ts/README.md +57 -0
  125. package/template-vanilla-ts/_aiignore +1 -0
  126. package/template-vanilla-ts/_env +3 -0
  127. package/template-vanilla-ts/_env.example +3 -0
  128. package/template-vanilla-ts/_gitignore +147 -0
  129. package/template-vanilla-ts/config.yaml +24 -0
  130. package/template-vanilla-ts/graphql.config.yml +3 -0
  131. package/template-vanilla-ts/package.json +14 -0
  132. package/template-vanilla-ts/resources.ts +52 -0
  133. package/template-vanilla-ts/schema.graphql +7 -0
  134. package/template-vanilla-ts/tsconfig.json +10 -0
  135. package/template-vanilla-ts/web/index.html +28 -0
  136. package/template-vanilla-ts/web/index.js +18 -0
  137. package/template-vanilla-ts/web/styles.css +57 -0
@@ -0,0 +1,147 @@
1
+ .DS_Store
2
+
3
+ #
4
+ # https://raw.githubusercontent.com/github/gitignore/refs/heads/main/Node.gitignore
5
+ #
6
+
7
+ # Logs
8
+ logs
9
+ *.log
10
+ npm-debug.log*
11
+ yarn-debug.log*
12
+ yarn-error.log*
13
+ lerna-debug.log*
14
+
15
+ # Diagnostic reports (https://nodejs.org/api/report.html)
16
+ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17
+
18
+ # Runtime data
19
+ pids
20
+ *.pid
21
+ *.seed
22
+ *.pid.lock
23
+
24
+ # Directory for instrumented libs generated by jscoverage/JSCover
25
+ lib-cov
26
+
27
+ # Coverage directory used by tools like istanbul
28
+ coverage
29
+ *.lcov
30
+
31
+ # nyc test coverage
32
+ .nyc_output
33
+
34
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35
+ .grunt
36
+
37
+ # Bower dependency directory (https://bower.io/)
38
+ bower_components
39
+
40
+ # node-waf configuration
41
+ .lock-wscript
42
+
43
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
44
+ build/Release
45
+
46
+ # Dependency directories
47
+ node_modules/
48
+ jspm_packages/
49
+
50
+ # Snowpack dependency directory (https://snowpack.dev/)
51
+ web_modules/
52
+
53
+ # TypeScript cache
54
+ *.tsbuildinfo
55
+
56
+ # Optional npm cache directory
57
+ .npm
58
+
59
+ # Optional eslint cache
60
+ .eslintcache
61
+
62
+ # Optional stylelint cache
63
+ .stylelintcache
64
+
65
+ # Optional REPL history
66
+ .node_repl_history
67
+
68
+ # Output of 'npm pack'
69
+ *.tgz
70
+
71
+ # Yarn Integrity file
72
+ .yarn-integrity
73
+
74
+ # dotenv environment variable files
75
+ .env
76
+ .env.*
77
+ !.env.example
78
+
79
+ # parcel-bundler cache (https://parceljs.org/)
80
+ .cache
81
+ .parcel-cache
82
+
83
+ # Next.js build output
84
+ .next
85
+ out
86
+
87
+ # Nuxt.js build / generate output
88
+ .nuxt
89
+ dist
90
+ .output
91
+
92
+ # Gatsby files
93
+ .cache/
94
+ # Comment in the public line in if your project uses Gatsby and not Next.js
95
+ # https://nextjs.org/blog/next-9-1#public-directory-support
96
+ # public
97
+
98
+ # vuepress build output
99
+ .vuepress/dist
100
+
101
+ # vuepress v2.x temp and cache directory
102
+ .temp
103
+ .cache
104
+
105
+ # Sveltekit cache directory
106
+ .svelte-kit/
107
+
108
+ # vitepress build output
109
+ **/.vitepress/dist
110
+
111
+ # vitepress cache directory
112
+ **/.vitepress/cache
113
+
114
+ # Docusaurus cache and generated files
115
+ .docusaurus
116
+
117
+ # Serverless directories
118
+ .serverless/
119
+
120
+ # FuseBox cache
121
+ .fusebox/
122
+
123
+ # DynamoDB Local files
124
+ .dynamodb/
125
+
126
+ # Firebase cache directory
127
+ .firebase/
128
+
129
+ # TernJS port file
130
+ .tern-port
131
+
132
+ # Stores VSCode versions used for testing VSCode extensions
133
+ .vscode-test
134
+
135
+ # yarn v3
136
+ .pnp.*
137
+ .yarn/*
138
+ !.yarn/patches
139
+ !.yarn/plugins
140
+ !.yarn/releases
141
+ !.yarn/sdks
142
+ !.yarn/versions
143
+
144
+ # Vite files
145
+ vite.config.js.timestamp-*
146
+ vite.config.ts.timestamp-*
147
+ .vite/
@@ -0,0 +1,23 @@
1
+ # yaml-language-server: $schema=./node_modules/harperdb/config-app.schema.json
2
+
3
+ # This is the configuration file for the application.
4
+ # It specifies built-in Harper components that will load the specified feature and files.
5
+ # For more information, see https://docs.harperdb.io/docs/reference/components/built-in-extensions
6
+
7
+ # Load Environment Variables from the specified file
8
+ # loadEnv:
9
+ # files: '.env'
10
+
11
+ # This provides the HTTP REST interface for all exported resources
12
+ rest: true
13
+
14
+ # These reads GraphQL schemas to define the schema of database/tables/attributes.
15
+ graphqlSchema:
16
+ files: 'schema.graphql'
17
+
18
+ # Loads JavaScript modules such that their exports are exported as resources
19
+ jsResource:
20
+ files: 'resources.js'
21
+
22
+ '@harperfast/vite-plugin':
23
+ package: '@harperfast/vite-plugin'
@@ -0,0 +1,2 @@
1
+ fastifyRoutes:
2
+ files: fastify/*.js
@@ -0,0 +1,14 @@
1
+ import fastifyStatic from '@fastify/static';
2
+ import { join } from 'path';
3
+
4
+ export default async (fastify) => {
5
+ fastify.register(fastifyStatic, {
6
+ root: join(import.meta.dirname, '../web'),
7
+ maxAge: '30d',
8
+ immutable: true,
9
+ });
10
+
11
+ fastify.get('/', function(req, reply) {
12
+ reply.sendFile('index.html', { maxAge: '1m', immutable: false });
13
+ });
14
+ };
@@ -0,0 +1,5 @@
1
+ {
2
+ "dependencies": {
3
+ "@fastify/static": "^7.0.4"
4
+ }
5
+ }
@@ -0,0 +1,3 @@
1
+ schema: schema.graphql
2
+ include: node_modules/harperdb/schema.graphql
3
+ documents: '**/*.graphql'
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>your-project-name-here</title>
8
+ </head>
9
+ <body>
10
+ <div id="app"></div>
11
+ <script type="module" src="/src/main.jsx"></script>
12
+ </body>
13
+ </html>
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "your-package-name-here",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "harper run .",
8
+ "test": "echo 'No tests implemented yet'",
9
+ "lint": "echo 'No lint implemented yet'",
10
+ "build": "vite build",
11
+ "preview": "vite preview",
12
+ "deploy": "npx -y dotenv-cli -- harperdb deploy . restart=rolling replicated=true"
13
+ },
14
+ "devDependencies": {
15
+ "@harperfast/vite-plugin": "^0.0.1",
16
+ "@vitejs/plugin-react": "^5.1.2",
17
+ "harperdb": "^4.7.15",
18
+ "react": "^19.2.3",
19
+ "react-dom": "^19.2.3",
20
+ "vite": "npm:rolldown-vite@7.3.1"
21
+ },
22
+ "overrides": {
23
+ "vite": "npm:rolldown-vite@7.3.1"
24
+ }
25
+ }
@@ -0,0 +1,14 @@
1
+ <svg
2
+ width="100%"
3
+ height="100%"
4
+ viewBox="-10.5 -9.45 21 18.9"
5
+ fill="none"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ >
8
+ <circle cx="0" cy="0" r="2" fill="#58c4dc"></circle>
9
+ <g stroke="#58c4dc" stroke-width="1" fill="none">
10
+ <ellipse rx="10" ry="4.5"></ellipse>
11
+ <ellipse rx="10" ry="4.5" transform="rotate(60)"></ellipse>
12
+ <ellipse rx="10" ry="4.5" transform="rotate(120)"></ellipse>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ aria-hidden="true"
4
+ role="img"
5
+ class="iconify iconify--logos"
6
+ width="32"
7
+ height="32"
8
+ preserveAspectRatio="xMidYMid meet"
9
+ viewBox="0 0 256 256"
10
+ >
11
+ <path fill="#007ACC" d="M0 128v128h256V0H0z"></path>
12
+ <path
13
+ fill="#FFF"
14
+ d="m56.612 128.85l-.081 10.483h33.32v94.68h23.568v-94.68h33.321v-10.28c0-5.69-.122-10.444-.284-10.566c-.122-.162-20.4-.244-44.983-.203l-44.74.122l-.121 10.443Zm149.955-10.742c6.501 1.625 11.459 4.51 16.01 9.224c2.357 2.52 5.851 7.111 6.136 8.208c.08.325-11.053 7.802-17.798 11.988c-.244.162-1.22-.894-2.317-2.52c-3.291-4.795-6.745-6.867-12.028-7.233c-7.76-.528-12.759 3.535-12.718 10.321c0 1.992.284 3.17 1.097 4.795c1.707 3.536 4.876 5.649 14.832 9.956c18.326 7.883 26.168 13.084 31.045 20.48c5.445 8.249 6.664 21.415 2.966 31.208c-4.063 10.646-14.14 17.879-28.323 20.276c-4.388.772-14.79.65-19.504-.203c-10.28-1.828-20.033-6.908-26.047-13.572c-2.357-2.6-6.949-9.387-6.664-9.874c.122-.163 1.178-.813 2.356-1.504c1.138-.65 5.446-3.129 9.509-5.485l7.355-4.267l1.544 2.276c2.154 3.29 6.867 7.801 9.712 9.305c8.167 4.307 19.383 3.698 24.909-1.26c2.357-2.153 3.332-4.388 3.332-7.68c0-2.966-.366-4.266-1.91-6.501c-1.99-2.845-6.054-5.242-17.595-10.24c-13.206-5.69-18.895-9.224-24.096-14.832c-3.007-3.25-5.852-8.452-7.03-12.8c-.975-3.617-1.22-12.678-.447-16.335c2.723-12.76 12.353-21.659 26.25-24.3c4.51-.853 14.994-.528 19.424.569Z"
15
+ ></path>
16
+ </svg>
@@ -0,0 +1,42 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ aria-hidden="true"
4
+ role="img"
5
+ class="iconify iconify--logos"
6
+ width="31.88"
7
+ height="32"
8
+ preserveAspectRatio="xMidYMid meet"
9
+ viewBox="0 0 256 257"
10
+ >
11
+ <defs>
12
+ <linearGradient
13
+ id="IconifyId1813088fe1fbc01fb466"
14
+ x1="-.828%"
15
+ x2="57.636%"
16
+ y1="7.652%"
17
+ y2="78.411%"
18
+ >
19
+ <stop offset="0%" stop-color="#41D1FF"></stop>
20
+ <stop offset="100%" stop-color="#BD34FE"></stop>
21
+ </linearGradient>
22
+ <linearGradient
23
+ id="IconifyId1813088fe1fbc01fb467"
24
+ x1="43.376%"
25
+ x2="50.316%"
26
+ y1="2.242%"
27
+ y2="89.03%"
28
+ >
29
+ <stop offset="0%" stop-color="#FFEA83"></stop>
30
+ <stop offset="8.333%" stop-color="#FFDD35"></stop>
31
+ <stop offset="100%" stop-color="#FFA800"></stop>
32
+ </linearGradient>
33
+ </defs>
34
+ <path
35
+ fill="url(#IconifyId1813088fe1fbc01fb466)"
36
+ d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"
37
+ ></path>
38
+ <path
39
+ fill="url(#IconifyId1813088fe1fbc01fb467)"
40
+ d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"
41
+ ></path>
42
+ </svg>
@@ -0,0 +1,27 @@
1
+ import { Resource } from 'harperdb';
2
+
3
+ /** Here we can define any JavaScript-based resources and extensions to tables
4
+ import {tables} from 'harperdb';
5
+
6
+ export class MyCustomResource extends tables.TableName {
7
+ // we can define our own custom POST handler
8
+ post(content) {
9
+ // do something with the incoming content;
10
+ return super.post(content);
11
+ }
12
+ // or custom GET handler
13
+ get() {
14
+ // we can modify this resource before returning
15
+ return super.get();
16
+ }
17
+ }
18
+ */
19
+ // we can also define a custom resource without a specific table
20
+ export class Greeting extends Resource {
21
+ // a "Hello, world!" handler
22
+ static loadAsInstance = false; // use the updated/newer Resource API
23
+
24
+ get() {
25
+ return { greeting: 'Hello, world!' };
26
+ }
27
+ }
@@ -0,0 +1,5 @@
1
+ type ToDoList @table @export {
2
+ id: ID @primaryKey
3
+ status: String @index
4
+ description: String
5
+ }
@@ -0,0 +1,34 @@
1
+ import reactLogo from '/react.svg';
2
+ import typescriptLogo from '/typescript.svg';
3
+ import viteLogo from '/vite.svg';
4
+ import { useCallback, useState } from 'react';
5
+
6
+ export function App() {
7
+ const [counter, setCounter] = useState(0);
8
+ const countUp = useCallback(() => {
9
+ setCounter(counter => counter + 1);
10
+ }, []);
11
+
12
+ return (
13
+ <>
14
+ <div>
15
+ <a href="https://vite.dev" target="_blank" rel="noopener noreferrer">
16
+ <img src={viteLogo} className="logo" alt="Vite logo" />
17
+ </a>
18
+ <a href="https://www.typescriptlang.org/" target="_blank" rel="noopener noreferrer">
19
+ <img src={typescriptLogo} className="logo vanilla" alt="TypeScript logo" />
20
+ </a>
21
+ <a href="https://react.dev/" target="_blank" rel="noopener noreferrer">
22
+ <img src={reactLogo} className="logo react" alt="React logo" />
23
+ </a>
24
+ <h1>Vite + TypeScript + React</h1>
25
+ <p>Wow, look at this!</p>
26
+ <div className="card">
27
+ <button id="counter" type="button" onClick={countUp}>
28
+ count is {counter}
29
+ </button>
30
+ </div>
31
+ </div>
32
+ </>
33
+ );
34
+ }
@@ -0,0 +1,13 @@
1
+ import { App } from '@/App.jsx';
2
+ import { StrictMode } from 'react';
3
+ import { createRoot } from 'react-dom/client';
4
+
5
+ import './style.css';
6
+
7
+ createRoot(
8
+ document.getElementById('app'),
9
+ ).render(
10
+ <StrictMode>
11
+ <App />
12
+ </StrictMode>,
13
+ );
@@ -0,0 +1,96 @@
1
+ :root {
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
4
+ font-weight: 400;
5
+
6
+ color-scheme: light dark;
7
+ color: rgba(255, 255, 255, 0.87);
8
+ background-color: #242424;
9
+
10
+ font-synthesis: none;
11
+ text-rendering: optimizeLegibility;
12
+ -webkit-font-smoothing: antialiased;
13
+ -moz-osx-font-smoothing: grayscale;
14
+ }
15
+
16
+ a {
17
+ font-weight: 500;
18
+ color: #646cff;
19
+ text-decoration: inherit;
20
+ }
21
+ a:hover {
22
+ color: #535bf2;
23
+ }
24
+
25
+ body {
26
+ margin: 0;
27
+ display: flex;
28
+ place-items: center;
29
+ min-width: 320px;
30
+ min-height: 100vh;
31
+ }
32
+
33
+ h1 {
34
+ font-size: 3.2em;
35
+ line-height: 1.1;
36
+ }
37
+
38
+ #app {
39
+ max-width: 1280px;
40
+ margin: 0 auto;
41
+ padding: 2rem;
42
+ text-align: center;
43
+ }
44
+
45
+ .logo {
46
+ height: 6em;
47
+ padding: 1.5em;
48
+ will-change: filter;
49
+ transition: filter 300ms;
50
+ }
51
+ .logo:hover {
52
+ filter: drop-shadow(0 0 2em #646cffaa);
53
+ }
54
+ .logo.vanilla:hover {
55
+ filter: drop-shadow(0 0 2em #3178c6aa);
56
+ }
57
+
58
+ .card {
59
+ padding: 2em;
60
+ }
61
+
62
+ .read-the-docs {
63
+ color: #888;
64
+ }
65
+
66
+ button {
67
+ border-radius: 8px;
68
+ border: 1px solid transparent;
69
+ padding: 0.6em 1.2em;
70
+ font-size: 1em;
71
+ font-weight: 500;
72
+ font-family: inherit;
73
+ background-color: #1a1a1a;
74
+ cursor: pointer;
75
+ transition: border-color 0.25s;
76
+ }
77
+ button:hover {
78
+ border-color: #646cff;
79
+ }
80
+ button:focus,
81
+ button:focus-visible {
82
+ outline: 4px auto -webkit-focus-ring-color;
83
+ }
84
+
85
+ @media (prefers-color-scheme: light) {
86
+ :root {
87
+ color: #213547;
88
+ background-color: #ffffff;
89
+ }
90
+ a:hover {
91
+ color: #747bff;
92
+ }
93
+ button {
94
+ background-color: #f9f9f9;
95
+ }
96
+ }
@@ -0,0 +1,9 @@
1
+ /// <reference types="vite/client" />
2
+
3
+ interface ImportMetaEnv {
4
+ readonly VITE_EXAMPLE_ENV_VAR: string;
5
+ }
6
+
7
+ interface ImportMeta {
8
+ readonly env: ImportMetaEnv;
9
+ }
@@ -0,0 +1,22 @@
1
+ import react from '@vitejs/plugin-react';
2
+ import path from 'node:path';
3
+ import { defineConfig } from 'vite';
4
+
5
+ // https://vite.dev/config/
6
+ export default defineConfig({
7
+ plugins: [
8
+ react(),
9
+ ],
10
+ resolve: {
11
+ alias: {
12
+ '@': path.resolve(__dirname, './src'),
13
+ },
14
+ },
15
+ build: {
16
+ outDir: 'web',
17
+ emptyOutDir: true,
18
+ rolldownOptions: {
19
+ external: ['**/*.test.*', '**/*.spec.*'],
20
+ },
21
+ },
22
+ });
@@ -0,0 +1,45 @@
1
+ # your-project-name-here
2
+
3
+ ## Installation
4
+
5
+ To get started, make sure you have [installed Harper](https://docs.harperdb.io/docs/deployments/install-harper), which can be done quickly:
6
+
7
+ ```sh
8
+ npm install -g harperdb
9
+ ```
10
+
11
+ ## Development
12
+
13
+ Then you can start your app:
14
+
15
+ ```sh
16
+ npm run dev
17
+ ```
18
+
19
+ Navigate to [http://localhost:9926](http://localhost:9926) in a browser and view the functional web application.
20
+
21
+ For more information about getting started with HarperDB and building applications, see our [getting started guide](https://docs.harperdb.io/docs).
22
+
23
+ For more information on Harper Components, see the [Components documentation](https://docs.harperdb.io/docs/reference/components).
24
+
25
+ Take a look at the [default configuration](./config.yaml), which specifies how files are handled in your application.
26
+
27
+ The [schema.graphql](./schema.graphql) is the table schema definition. This is the main starting point for defining your database schema, specifying which tables you want and what attributes/fields they should have.
28
+
29
+ The [resources.js](resources.ts) provides a template for defining JavaScript resource classes, for customized application logic in your endpoints.
30
+
31
+ ## Deployment
32
+
33
+ When you are ready, head to [https://fabric.harper.fast/](https://fabric.harper.fast/), log in to your account, and create a cluster.
34
+
35
+ Set up your .env file with your secure cluster credentials. Don't commit this file to source control!
36
+
37
+ ```sh
38
+ npm run login
39
+ ```
40
+
41
+ Then you can deploy your app to your cluster:
42
+
43
+ ```sh
44
+ npm run deploy
45
+ ```
@@ -0,0 +1 @@
1
+ .env
@@ -0,0 +1,3 @@
1
+ CLI_TARGET_USERNAME='your-cluster-username-here'
2
+ CLI_TARGET_PASSWORD='your-cluster-password-here'
3
+ CLI_TARGET='your-fabric.harper.fast-cluster-url-here'
@@ -0,0 +1,3 @@
1
+ CLI_TARGET_USERNAME='YOUR_CLUSTER_USERNAME'
2
+ CLI_TARGET_PASSWORD='YOUR_CLUSTER_PASSWORD'
3
+ CLI_TARGET='YOUR_FABRIC.HARPER.FAST_CLUSTER_URL_HERE'
@@ -0,0 +1,40 @@
1
+ name: Deploy to Harper Fabric
2
+ on:
3
+ workflow_dispatch:
4
+ # push:
5
+ # branches:
6
+ # - main
7
+
8
+ concurrency:
9
+ group: main
10
+ cancel-in-progress: false
11
+
12
+ jobs:
13
+ deploy:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
18
+ with:
19
+ fetch-depth: 0
20
+ fetch-tags: true
21
+ - name: Set up Node.js
22
+ uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
23
+ with:
24
+ cache: 'npm'
25
+ node-version-file: '.nvmrc'
26
+ - name: Install dependencies
27
+ run: npm ci
28
+ - name: Run unit tests
29
+ run: npm test
30
+ - name: Run lint
31
+ run: npm run lint
32
+ - name: Build
33
+ run: npm run build
34
+ - name: Deploy
35
+ run: |
36
+ mkdir deploy
37
+ mv web deploy/
38
+ cp -R deploy-template/* deploy/
39
+ cd deploy
40
+ CLI_TARGET_USERNAME=${{ secrets.CLI_TARGET_USERNAME }} CLI_TARGET_PASSWORD='${{ secrets.CLI_TARGET_PASSWORD }}' harperdb deploy_component project='${{ secrets.CLI_DEPLOY_TARGET_NAME }}' target='${{ secrets.CLI_DEPLOY_TARGET_URL }}' restart=false replicated=true