create-cloud-db 1.0.3 → 1.0.5

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.
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # create-cloud-db
2
2
 
3
+ [NPM](https://www.npmjs.com/package/create-cloud-db)
4
+
3
5
  `create-cloud-db` is a small CLI that creates a Turso database and manages the `TURSO_DATABASE_URL` and `TURSO_AUTH_TOKEN` values in your local `.env` file.
4
6
 
5
7
  It is designed for quick local setup so you can be ready to connect from Node, frameworks, or serverless environments with minimal manual configuration.
@@ -20,9 +22,14 @@ Then run:
20
22
 
21
23
  ```bash
22
24
  # will ask for name
25
+ npm create cloud-db
26
+
27
+ # or
23
28
  npx create-cloud-db
24
29
 
30
+ # or
25
31
  npx create-cloud-db [myapp-db]
32
+
26
33
  ```
27
34
 
28
35
  Or install globally:
package/package.json CHANGED
@@ -3,15 +3,20 @@
3
3
  "description": "CLI to create a Turso database and write TURSO_* env vars to .env file",
4
4
  "type": "module",
5
5
  "author": "vtempest",
6
- "version": "1.0.3",
6
+ "version": "1.0.5",
7
7
  "main": "create-cloud-db.js",
8
8
  "bin": {
9
9
  "create-cloud-db": "./create-cloud-db.js"
10
10
  },
11
11
  "scripts": {
12
- "ship": "npx standard-version --release-as patch; npm publish",
12
+ "ship": "npx standard-version --release-as patch; rm CHANGELOG.md; npm publish",
13
13
  "start": "node create-cloud-db.js"
14
14
  },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/OpenSourceAGI/StarterDOCS/tree/master/packages/create-cloud-db"
18
+ },
19
+ "homepage": "https://github.com/OpenSourceAGI/StarterDOCS/tree/master/packages/create-cloud-db",
15
20
  "keywords": [
16
21
  "turso",
17
22
  "database",
package/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
-
5
- ### [1.0.3](https://github.com/vtempest/Svelte-Starter-DOCS/compare/v1.0.2...v1.0.3) (2025-12-22)