@rebasepro/cli 0.9.1-canary.7dddf96 → 0.9.1-canary.a57c262
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/dist/commands/init.d.ts +2 -0
- package/dist/index.es.js +45 -16
- package/dist/index.es.js.map +1 -1
- package/package.json +7 -7
- package/templates/template/.env.example +6 -3
- package/templates/template/backend/package.json +2 -1
- package/templates/template/gitignore +31 -0
- package/templates/template/npmrc +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebasepro/cli",
|
|
3
|
-
"version": "0.9.1-canary.
|
|
3
|
+
"version": "0.9.1-canary.a57c262",
|
|
4
4
|
"description": "Developer tools for Rebase projects",
|
|
5
5
|
"main": "./dist/index.es.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"execa": "^9.6.1",
|
|
32
32
|
"inquirer": "14.0.2",
|
|
33
33
|
"jiti": "^2.7.0",
|
|
34
|
-
"@rebasepro/
|
|
35
|
-
"@rebasepro/
|
|
36
|
-
"@rebasepro/
|
|
37
|
-
"@rebasepro/server": "0.9.1-canary.
|
|
38
|
-
"@rebasepro/
|
|
39
|
-
"@rebasepro/
|
|
34
|
+
"@rebasepro/client": "0.9.1-canary.a57c262",
|
|
35
|
+
"@rebasepro/codegen": "0.9.1-canary.a57c262",
|
|
36
|
+
"@rebasepro/agent-skills": "0.9.1-canary.a57c262",
|
|
37
|
+
"@rebasepro/server-postgres": "0.9.1-canary.a57c262",
|
|
38
|
+
"@rebasepro/types": "0.9.1-canary.a57c262",
|
|
39
|
+
"@rebasepro/server": "0.9.1-canary.a57c262"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/node": "^25.9.3",
|
|
@@ -7,11 +7,14 @@
|
|
|
7
7
|
# Database connection string (required)
|
|
8
8
|
# You can use PostgreSQL (postgresql://) or MongoDB (mongodb:// or mongodb+srv://).
|
|
9
9
|
# The backend will automatically detect the database type.
|
|
10
|
-
|
|
10
|
+
# sslmode=disable matches the local docker-compose database, which has no TLS;
|
|
11
|
+
# schema tooling (atlas) would otherwise default to requiring SSL. Remove it
|
|
12
|
+
# when pointing at a managed/cloud database.
|
|
13
|
+
DATABASE_URL=postgresql://rebase:changeme@localhost:5432/rebase?options=-c%20search_path=public&sslmode=disable
|
|
11
14
|
# DATABASE_URL=mongodb://localhost:27017/rebase
|
|
12
15
|
#
|
|
13
|
-
# Seeing "SSL is not enabled on the server"?
|
|
14
|
-
#
|
|
16
|
+
# Seeing "SSL is not enabled on the server"? Something in your environment
|
|
17
|
+
# asks for SSL — almost always a global PGSSLMODE=require
|
|
15
18
|
# (set once for a cloud database, then inherited by every local project), or an
|
|
16
19
|
# sslmode=require copied in with a connection string.
|
|
17
20
|
#
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
|
|
4
|
+
# Build output
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
|
|
8
|
+
# Environment (secrets — .env.example is tracked)
|
|
9
|
+
.env
|
|
10
|
+
.env.local
|
|
11
|
+
!.env.example
|
|
12
|
+
|
|
13
|
+
# IDE
|
|
14
|
+
.idea/
|
|
15
|
+
.vscode/
|
|
16
|
+
*.swp
|
|
17
|
+
*.swo
|
|
18
|
+
|
|
19
|
+
# OS
|
|
20
|
+
.DS_Store
|
|
21
|
+
Thumbs.db
|
|
22
|
+
|
|
23
|
+
# Drizzle
|
|
24
|
+
drizzle/meta/
|
|
25
|
+
|
|
26
|
+
# Uploads
|
|
27
|
+
uploads/
|
|
28
|
+
|
|
29
|
+
# Rebase dev
|
|
30
|
+
.rebase-dev-url
|
|
31
|
+
.rebase-dev-port
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Ensure pnpm links local workspace packages when version specifiers
|
|
2
|
+
# like "*" are used (instead of the pnpm-specific "workspace:*" protocol).
|
|
3
|
+
# This makes the project compatible with both pnpm and npm workspaces.
|
|
4
|
+
link-workspace-packages=true
|
|
5
|
+
|
|
6
|
+
# Disable automatic dependency check before running scripts to prevent background install failures in read-only environments
|
|
7
|
+
verify-deps-before-run=false
|
|
8
|
+
|
|
9
|
+
# Prevent pnpm from prompting for confirmation when purging modules in non-TTY environments (e.g. Docker, CI)
|
|
10
|
+
confirm-modules-purge=false
|