kybernus 2.0.8 → 2.0.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kybernus",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "type": "module",
5
5
  "description": "The Ultimate Scaffolding CLI for Modern Developers",
6
6
  "main": "dist/index.js",
@@ -76,4 +76,4 @@
76
76
  "overrides": {
77
77
  "rimraf": "^6.1.2"
78
78
  }
79
- }
79
+ }
@@ -8,11 +8,11 @@ services:
8
8
  POSTGRES_USER: postgres
9
9
  POSTGRES_PASSWORD: postgres
10
10
  POSTGRES_DB: {{projectNameSnakeCase}}
11
- ports:
12
- - "5432:5432"
13
- volumes:
14
- - postgres_data:/var/lib/postgresql/data
15
- restart: unless-stopped
11
+ ports:
12
+ - "5432:5432"
13
+ volumes:
14
+ - postgres_data:/var/lib/postgresql/data
15
+ restart: unless-stopped
16
16
 
17
- volumes:
18
- postgres_data:
17
+ volumes:
18
+ postgres_data:
@@ -8,11 +8,11 @@ services:
8
8
  POSTGRES_USER: postgres
9
9
  POSTGRES_PASSWORD: postgres
10
10
  POSTGRES_DB: {{projectNameSnakeCase}}
11
- ports:
12
- - "5432:5432"
13
- volumes:
14
- - postgres_data:/var/lib/postgresql/data
15
- restart: unless-stopped
11
+ ports:
12
+ - "5432:5432"
13
+ volumes:
14
+ - postgres_data:/var/lib/postgresql/data
15
+ restart: unless-stopped
16
16
 
17
- volumes:
18
- postgres_data:
17
+ volumes:
18
+ postgres_data:
@@ -8,11 +8,11 @@ services:
8
8
  POSTGRES_USER: postgres
9
9
  POSTGRES_PASSWORD: postgres
10
10
  POSTGRES_DB: {{projectNameSnakeCase}}
11
- ports:
12
- - "5432:5432"
13
- volumes:
14
- - postgres_data:/var/lib/postgresql/data
15
- restart: unless-stopped
11
+ ports:
12
+ - "5432:5432"
13
+ volumes:
14
+ - postgres_data:/var/lib/postgresql/data
15
+ restart: unless-stopped
16
16
 
17
- volumes:
18
- postgres_data:
17
+ volumes:
18
+ postgres_data:
@@ -1,28 +1,28 @@
1
1
  version: '3.8'
2
2
 
3
3
  services:
4
- app:
5
- build: .
6
- container_name: {{kebabCase projectName}}-app
7
- ports:
8
- - "3000:3000"
9
- environment:
10
- - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
- depends_on:
12
- - db
4
+ app:
5
+ build: .
6
+ container_name: {{kebabCase projectName}}-app
7
+ ports:
8
+ - "3000:3000"
9
+ environment:
10
+ - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
+ depends_on:
12
+ - db
13
13
 
14
- db:
15
- image: postgres:15-alpine
16
- container_name: {{kebabCase projectName}}-db
17
- environment:
18
- POSTGRES_USER: postgres
19
- POSTGRES_PASSWORD: postgres
20
- POSTGRES_DB: {{snakeCase projectName}}
21
- ports:
22
- - "5432:5432"
23
- volumes:
24
- - postgres_data:/var/lib/postgresql/data
25
- restart: unless-stopped
14
+ db:
15
+ image: postgres:15-alpine
16
+ container_name: {{kebabCase projectName}}-db
17
+ environment:
18
+ POSTGRES_USER: postgres
19
+ POSTGRES_PASSWORD: postgres
20
+ POSTGRES_DB: {{snakeCase projectName}}
21
+ ports:
22
+ - "5432:5432"
23
+ volumes:
24
+ - postgres_data:/var/lib/postgresql/data
25
+ restart: unless-stopped
26
26
 
27
27
  volumes:
28
- postgres_data:
28
+ postgres_data:
@@ -1,28 +1,28 @@
1
1
  version: '3.8'
2
2
 
3
3
  services:
4
- app:
5
- build: .
6
- container_name: {{kebabCase projectName}}-app
7
- ports:
8
- - "3000:3000"
9
- environment:
10
- - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
- depends_on:
12
- - db
4
+ app:
5
+ build: .
6
+ container_name: {{kebabCase projectName}}-app
7
+ ports:
8
+ - "3000:3000"
9
+ environment:
10
+ - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
+ depends_on:
12
+ - db
13
13
 
14
- db:
15
- image: postgres:15-alpine
16
- container_name: {{kebabCase projectName}}-db
17
- environment:
18
- POSTGRES_USER: postgres
19
- POSTGRES_PASSWORD: postgres
20
- POSTGRES_DB: {{snakeCase projectName}}
21
- ports:
22
- - "5432:5432"
23
- volumes:
24
- - postgres_data:/var/lib/postgresql/data
25
- restart: unless-stopped
14
+ db:
15
+ image: postgres:15-alpine
16
+ container_name: {{kebabCase projectName}}-db
17
+ environment:
18
+ POSTGRES_USER: postgres
19
+ POSTGRES_PASSWORD: postgres
20
+ POSTGRES_DB: {{snakeCase projectName}}
21
+ ports:
22
+ - "5432:5432"
23
+ volumes:
24
+ - postgres_data:/var/lib/postgresql/data
25
+ restart: unless-stopped
26
26
 
27
27
  volumes:
28
- postgres_data:
28
+ postgres_data:
@@ -1,28 +1,28 @@
1
1
  version: '3.8'
2
2
 
3
3
  services:
4
- app:
5
- build: .
6
- container_name: {{kebabCase projectName}}-app
7
- ports:
8
- - "3000:3000"
9
- environment:
10
- - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
- depends_on:
12
- - db
4
+ app:
5
+ build: .
6
+ container_name: {{kebabCase projectName}}-app
7
+ ports:
8
+ - "3000:3000"
9
+ environment:
10
+ - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
+ depends_on:
12
+ - db
13
13
 
14
- db:
15
- image: postgres:15-alpine
16
- container_name: {{kebabCase projectName}}-db
17
- environment:
18
- POSTGRES_USER: postgres
19
- POSTGRES_PASSWORD: postgres
20
- POSTGRES_DB: {{snakeCase projectName}}
21
- ports:
22
- - "5432:5432"
23
- volumes:
24
- - postgres_data:/var/lib/postgresql/data
25
- restart: unless-stopped
14
+ db:
15
+ image: postgres:15-alpine
16
+ container_name: {{kebabCase projectName}}-db
17
+ environment:
18
+ POSTGRES_USER: postgres
19
+ POSTGRES_PASSWORD: postgres
20
+ POSTGRES_DB: {{snakeCase projectName}}
21
+ ports:
22
+ - "5432:5432"
23
+ volumes:
24
+ - postgres_data:/var/lib/postgresql/data
25
+ restart: unless-stopped
26
26
 
27
27
  volumes:
28
- postgres_data:
28
+ postgres_data:
@@ -8,11 +8,11 @@ services:
8
8
  POSTGRES_USER: postgres
9
9
  POSTGRES_PASSWORD: postgres
10
10
  POSTGRES_DB: {{snakeCase projectName}}
11
- ports:
12
- - "5432:5432"
13
- volumes:
14
- - postgres_data:/var/lib/postgresql/data
15
- restart: unless-stopped
11
+ ports:
12
+ - "5432:5432"
13
+ volumes:
14
+ - postgres_data:/var/lib/postgresql/data
15
+ restart: unless-stopped
16
16
 
17
- volumes:
18
- postgres_data:
17
+ volumes:
18
+ postgres_data:
@@ -8,11 +8,11 @@ services:
8
8
  POSTGRES_USER: postgres
9
9
  POSTGRES_PASSWORD: postgres
10
10
  POSTGRES_DB: {{snakeCase projectName}}
11
- ports:
12
- - "5432:5432"
13
- volumes:
14
- - postgres_data:/var/lib/postgresql/data
15
- restart: unless-stopped
11
+ ports:
12
+ - "5432:5432"
13
+ volumes:
14
+ - postgres_data:/var/lib/postgresql/data
15
+ restart: unless-stopped
16
16
 
17
- volumes:
18
- postgres_data:
17
+ volumes:
18
+ postgres_data:
@@ -8,11 +8,11 @@ services:
8
8
  POSTGRES_USER: postgres
9
9
  POSTGRES_PASSWORD: postgres
10
10
  POSTGRES_DB: {{snakeCase projectName}}
11
- ports:
12
- - "5432:5432"
13
- volumes:
14
- - postgres_data:/var/lib/postgresql/data
15
- restart: unless-stopped
11
+ ports:
12
+ - "5432:5432"
13
+ volumes:
14
+ - postgres_data:/var/lib/postgresql/data
15
+ restart: unless-stopped
16
16
 
17
- volumes:
18
- postgres_data:
17
+ volumes:
18
+ postgres_data:
@@ -8,11 +8,11 @@ services:
8
8
  POSTGRES_USER: postgres
9
9
  POSTGRES_PASSWORD: postgres
10
10
  POSTGRES_DB: {{snakeCase projectName}}
11
- ports:
12
- - "5432:5432"
13
- volumes:
14
- - postgres_data:/var/lib/postgresql/data
15
- restart: unless-stopped
11
+ ports:
12
+ - "5432:5432"
13
+ volumes:
14
+ - postgres_data:/var/lib/postgresql/data
15
+ restart: unless-stopped
16
16
 
17
- volumes:
18
- postgres_data:
17
+ volumes:
18
+ postgres_data:
@@ -1,28 +1,28 @@
1
1
  version: '3.8'
2
2
 
3
3
  services:
4
- app:
5
- build: .
6
- container_name: {{kebabCase projectName}}-app
7
- ports:
8
- - "8000:8000"
9
- environment:
10
- - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
- depends_on:
12
- - db
4
+ app:
5
+ build: .
6
+ container_name: {{kebabCase projectName}}-app
7
+ ports:
8
+ - "8000:8000"
9
+ environment:
10
+ - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
+ depends_on:
12
+ - db
13
13
 
14
- db:
15
- image: postgres:15-alpine
16
- container_name: {{kebabCase projectName}}-db
17
- environment:
18
- POSTGRES_USER: postgres
19
- POSTGRES_PASSWORD: postgres
20
- POSTGRES_DB: {{snakeCase projectName}}
21
- ports:
22
- - "5432:5432"
23
- volumes:
24
- - postgres_data:/var/lib/postgresql/data
25
- restart: unless-stopped
14
+ db:
15
+ image: postgres:15-alpine
16
+ container_name: {{kebabCase projectName}}-db
17
+ environment:
18
+ POSTGRES_USER: postgres
19
+ POSTGRES_PASSWORD: postgres
20
+ POSTGRES_DB: {{snakeCase projectName}}
21
+ ports:
22
+ - "5432:5432"
23
+ volumes:
24
+ - postgres_data:/var/lib/postgresql/data
25
+ restart: unless-stopped
26
26
 
27
27
  volumes:
28
- postgres_data:
28
+ postgres_data:
@@ -1,28 +1,28 @@
1
1
  version: '3.8'
2
2
 
3
3
  services:
4
- app:
5
- build: .
6
- container_name: {{kebabCase projectName}}-app
7
- ports:
8
- - "8000:8000"
9
- environment:
10
- - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
- depends_on:
12
- - db
4
+ app:
5
+ build: .
6
+ container_name: {{kebabCase projectName}}-app
7
+ ports:
8
+ - "8000:8000"
9
+ environment:
10
+ - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
+ depends_on:
12
+ - db
13
13
 
14
- db:
15
- image: postgres:15-alpine
16
- container_name: {{kebabCase projectName}}-db
17
- environment:
18
- POSTGRES_USER: postgres
19
- POSTGRES_PASSWORD: postgres
20
- POSTGRES_DB: {{snakeCase projectName}}
21
- ports:
22
- - "5432:5432"
23
- volumes:
24
- - postgres_data:/var/lib/postgresql/data
25
- restart: unless-stopped
14
+ db:
15
+ image: postgres:15-alpine
16
+ container_name: {{kebabCase projectName}}-db
17
+ environment:
18
+ POSTGRES_USER: postgres
19
+ POSTGRES_PASSWORD: postgres
20
+ POSTGRES_DB: {{snakeCase projectName}}
21
+ ports:
22
+ - "5432:5432"
23
+ volumes:
24
+ - postgres_data:/var/lib/postgresql/data
25
+ restart: unless-stopped
26
26
 
27
27
  volumes:
28
- postgres_data:
28
+ postgres_data:
@@ -1,28 +1,28 @@
1
1
  version: '3.8'
2
2
 
3
3
  services:
4
- app:
5
- build: .
6
- container_name: {{kebabCase projectName}}-app
7
- ports:
8
- - "8000:8000"
9
- environment:
10
- - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
- depends_on:
12
- - db
4
+ app:
5
+ build: .
6
+ container_name: {{kebabCase projectName}}-app
7
+ ports:
8
+ - "8000:8000"
9
+ environment:
10
+ - DATABASE_URL=postgresql://postgres:postgres@db:5432/{{snakeCase projectName}}
11
+ depends_on:
12
+ - db
13
13
 
14
- db:
15
- image: postgres:15-alpine
16
- container_name: {{kebabCase projectName}}-db
17
- environment:
18
- POSTGRES_USER: postgres
19
- POSTGRES_PASSWORD: postgres
20
- POSTGRES_DB: {{snakeCase projectName}}
21
- ports:
22
- - "5432:5432"
23
- volumes:
24
- - postgres_data:/var/lib/postgresql/data
25
- restart: unless-stopped
14
+ db:
15
+ image: postgres:15-alpine
16
+ container_name: {{kebabCase projectName}}-db
17
+ environment:
18
+ POSTGRES_USER: postgres
19
+ POSTGRES_PASSWORD: postgres
20
+ POSTGRES_DB: {{snakeCase projectName}}
21
+ ports:
22
+ - "5432:5432"
23
+ volumes:
24
+ - postgres_data:/var/lib/postgresql/data
25
+ restart: unless-stopped
26
26
 
27
27
  volumes:
28
- postgres_data:
28
+ postgres_data: