deploy-bbc 1.2.2 โ 1.2.4
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 +158 -284
- package/dist/index.js +15 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,345 +1,219 @@
|
|
|
1
|
-
#
|
|
1
|
+
# deploy-bbc
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<b>Best Backend Code</b> โ A powerful CLI to bootstrap production-ready backend applications with Bun
|
|
5
|
+
</p>
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
+
<p align="center">
|
|
8
|
+
<img src="https://img.shields.io/npm/v/deploy-bbc" alt="npm version" />
|
|
9
|
+
<img src="https://img.shields.io/npm/dt/deploy-bbc" alt="npm downloads" />
|
|
10
|
+
<img src="https://img.shields.io/github/stars/aritra69/deploy-bbc" alt="github stars" />
|
|
11
|
+
<img src="https://img.shields.io/github/license/aritra69/deploy-bbc" alt="license" />
|
|
12
|
+
</p>
|
|
7
13
|
|
|
8
|
-
|
|
14
|
+
---
|
|
9
15
|
|
|
10
|
-
|
|
11
|
-
- โก **3 Framework Options** - Choose between Hono, Express, or Bun Native
|
|
12
|
-
- ๐๏ธ **Multiple Databases** - PostgreSQL, MySQL, MongoDB, Redis with Drizzle ORM/Mongoose
|
|
13
|
-
- ๐ **Authentication** - JWT, OAuth 2.0, Session-based auth
|
|
14
|
-
- ๐ค **AI Integration** - OpenAI, Anthropic Claude, Google Gemini, Vercel AI SDK
|
|
15
|
-
- โ๏ธ **Cloud Storage** - AWS S3, Google Cloud, Azure, Cloudflare R2
|
|
16
|
-
- ๐ง **Email Services** - Resend, SendGrid, NodeMailer
|
|
17
|
-
- ๐ **Real-time** - Socket.io, Server-Sent Events
|
|
18
|
-
- ๐ **Validation** - Zod or Yup for request validation
|
|
19
|
-
- ๐ **Background Jobs** - BullMQ, Inngest
|
|
20
|
-
- ๐ **API Documentation** - Swagger/OpenAPI, Scalar
|
|
21
|
-
- ๐งช **Testing** - Vitest with Supertest
|
|
22
|
-
- ๐ณ **Docker Ready** - Dockerfile + docker-compose.yml included
|
|
23
|
-
- ๐ฆ **TypeScript** - Full type safety out of the box
|
|
16
|
+
## Overview
|
|
24
17
|
|
|
25
|
-
|
|
18
|
+
`deploy-bbc` is an interactive command-line tool that scaffolds modern, type-safe backend applications using Bun.
|
|
26
19
|
|
|
27
|
-
|
|
28
|
-
# Using npx (recommended)
|
|
29
|
-
npx deploy-bbc my-awesome-api
|
|
20
|
+
It ships with production-ready defaults, optional integrations, Docker support, and a clean architecture so you can focus on building features instead of wiring infrastructure.
|
|
30
21
|
|
|
31
|
-
|
|
32
|
-
npm create deploy-bbc my-awesome-api
|
|
22
|
+
---
|
|
33
23
|
|
|
34
|
-
|
|
35
|
-
bunx deploy-bbc my-awesome-api
|
|
36
|
-
```
|
|
24
|
+
## Tech Stack
|
|
37
25
|
|
|
38
|
-
|
|
26
|
+
<p align="center">
|
|
27
|
+
<img height="40" src="https://bun.sh/logo.svg" alt="Bun" />
|
|
28
|
+
<img height="40" src="https://hono.dev/images/logo.svg" alt="Hono" />
|
|
29
|
+
<img height="40" src="https://raw.githubusercontent.com/expressjs/expressjs.com/gh-pages/images/favicon.png" alt="Express" />
|
|
30
|
+
<img height="40" src="https://www.typescriptlang.org/icons/icon-48x48.png" alt="TypeScript" />
|
|
31
|
+
<img height="40" src="https://www.docker.com/wp-content/uploads/2022/03/Moby-logo.png" alt="Docker" />
|
|
32
|
+
</p>
|
|
39
33
|
|
|
40
|
-
|
|
41
|
-
# Install globally
|
|
42
|
-
npm install -g deploy-bbc
|
|
34
|
+
---
|
|
43
35
|
|
|
44
|
-
|
|
45
|
-
npx deploy-bbc
|
|
46
|
-
```
|
|
36
|
+
## Features
|
|
47
37
|
|
|
48
|
-
|
|
38
|
+
- โก **Three framework options**: Hono, Express, or Bun Native HTTP
|
|
39
|
+
- ๐ **Production-ready templates** with best practices
|
|
40
|
+
- ๐ **30+ integrations** (databases, auth, AI, cloud, infra)
|
|
41
|
+
- ๐ก๏ธ **Fully type-safe** with strict TypeScript
|
|
42
|
+
- ๐ณ **Dockerfile and docker-compose** included
|
|
43
|
+
- ๐ **Strong developer experience** with testing and docs
|
|
44
|
+
- โ๏ธ **Zero-config defaults** that work out of the box
|
|
49
45
|
|
|
50
|
-
|
|
46
|
+
---
|
|
51
47
|
|
|
52
|
-
|
|
48
|
+
## Quick Start
|
|
53
49
|
|
|
54
50
|
```bash
|
|
55
|
-
npx deploy-bbc my-
|
|
51
|
+
npx deploy-bbc my-backend
|
|
52
|
+
# or
|
|
53
|
+
bunx deploy-bbc my-backend
|
|
56
54
|
```
|
|
57
55
|
|
|
58
|
-
|
|
59
|
-
1. **Project name** - Your application name
|
|
60
|
-
2. **Framework** - Hono (recommended), Express, or Bun Native
|
|
61
|
-
3. **Database(s)** - PostgreSQL, MySQL, MongoDB, Redis
|
|
62
|
-
4. **Authentication** - JWT, OAuth, Session-based
|
|
63
|
-
5. **AI Providers** - OpenAI, Anthropic, Gemini
|
|
64
|
-
6. **Email Service** - Resend, SendGrid, NodeMailer
|
|
65
|
-
7. **Real-time** - Socket.io or SSE
|
|
66
|
-
8. **Background Jobs** - BullMQ or Inngest
|
|
67
|
-
9. **Validation** - Zod or Yup
|
|
68
|
-
10. **API Docs** - Swagger or Scalar
|
|
69
|
-
11. **Testing** - Vitest setup
|
|
56
|
+
---
|
|
70
57
|
|
|
71
|
-
|
|
58
|
+
## Framework Options
|
|
72
59
|
|
|
73
|
-
|
|
60
|
+
<p align="center">
|
|
61
|
+
<img height="36" src="https://hono.dev/images/logo.svg" alt="Hono" />
|
|
62
|
+
<img height="36" src="https://raw.githubusercontent.com/expressjs/expressjs.com/gh-pages/images/favicon.png" alt="Express" />
|
|
63
|
+
<img height="36" src="https://bun.sh/logo.svg" alt="Bun" />
|
|
64
|
+
</p>
|
|
74
65
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
--express \
|
|
79
|
-
--postgres \
|
|
80
|
-
--redis \
|
|
81
|
-
--jwt \
|
|
82
|
-
--zod \
|
|
83
|
-
--vitest \
|
|
84
|
-
--swagger \
|
|
85
|
-
--noGit
|
|
86
|
-
```
|
|
66
|
+
- **Hono** (default) โ lightweight and edge-ready
|
|
67
|
+
- **Express** โ battle-tested Node.js framework
|
|
68
|
+
- **Bun Native HTTP** โ minimal overhead, maximum performance
|
|
87
69
|
|
|
88
|
-
|
|
70
|
+
---
|
|
89
71
|
|
|
90
|
-
|
|
91
|
-
```bash
|
|
92
|
-
npx deploy-bbc my-app --hono
|
|
93
|
-
```
|
|
94
|
-
- Ultrafast web framework built for the edge
|
|
95
|
-
- Tiny footprint (~12KB)
|
|
96
|
-
- Express-like API
|
|
97
|
-
- **Recommended for most projects**
|
|
72
|
+
## Databases and Caching
|
|
98
73
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
- Familiar to most developers
|
|
74
|
+
<p align="center">
|
|
75
|
+
<img height="40" src="https://www.postgresql.org/media/img/about/press/elephant.png" alt="PostgreSQL" />
|
|
76
|
+
<img height="40" src="https://www.mysql.com/common/logos/logo-mysql-170x115.png" alt="MySQL" />
|
|
77
|
+
<img height="40" src="https://www.mongodb.com/assets/images/global/favicon.ico" alt="MongoDB" />
|
|
78
|
+
<img height="40" src="https://cdn.brandfetch.io/idwlYcQpHB/theme/dark/symbol.svg?c=1bxid64Mup7aczewSAYMX&t=1668515608635" alt="Redis" />
|
|
79
|
+
</p>
|
|
106
80
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
- Native Bun.serve() API
|
|
112
|
-
- Zero dependencies
|
|
113
|
-
- Maximum performance
|
|
114
|
-
|
|
115
|
-
## ๐ Available Packages
|
|
116
|
-
|
|
117
|
-
### Databases
|
|
118
|
-
- `--postgres` - PostgreSQL with Drizzle ORM
|
|
119
|
-
- `--mysql` - MySQL with Drizzle ORM
|
|
120
|
-
- `--mongodb` - MongoDB with Mongoose
|
|
121
|
-
- `--redis` - Redis for caching & sessions
|
|
122
|
-
|
|
123
|
-
### Authentication
|
|
124
|
-
- `--jwt` - JSON Web Token authentication
|
|
125
|
-
- `--oauth` - OAuth 2.0 (Google, GitHub)
|
|
126
|
-
- `--session` - Session-based auth (requires Redis)
|
|
127
|
-
|
|
128
|
-
### AI & ML
|
|
129
|
-
- `--openai` - OpenAI GPT models
|
|
130
|
-
- `--anthropic` - Anthropic Claude SDK
|
|
131
|
-
- `--gemini` - Google Gemini
|
|
132
|
-
- `--vercelAI` - Vercel AI SDK (unified interface)
|
|
133
|
-
|
|
134
|
-
### Cloud Storage
|
|
135
|
-
- `--aws` - AWS S3 & SES
|
|
136
|
-
- `--gcp` - Google Cloud Storage
|
|
137
|
-
- `--azure` - Azure Blob Storage
|
|
138
|
-
- `--cloudflareR2` - Cloudflare R2
|
|
139
|
-
|
|
140
|
-
### Communication
|
|
141
|
-
- `--resend` - Modern email service
|
|
142
|
-
- `--sendgrid` - Enterprise email
|
|
143
|
-
- `--nodemailer` - SMTP email
|
|
144
|
-
- `--socketio` - WebSockets
|
|
145
|
-
- `--sse` - Server-Sent Events
|
|
146
|
-
|
|
147
|
-
### Infrastructure
|
|
148
|
-
- `--bullmq` - Redis-based job queue
|
|
149
|
-
- `--inngest` - Serverless job orchestration
|
|
150
|
-
- `--upstashRateLimit` - Upstash rate limiting
|
|
151
|
-
- `--customRateLimit` - Custom rate limit middleware
|
|
152
|
-
- `--sentry` - Error tracking
|
|
153
|
-
- `--logtail` - Log aggregation
|
|
154
|
-
|
|
155
|
-
### Developer Experience
|
|
156
|
-
- `--swagger` - Swagger/OpenAPI docs
|
|
157
|
-
- `--scalar` - Modern API documentation
|
|
158
|
-
- `--vitest` - Testing framework
|
|
159
|
-
- `--zod` - Zod validation
|
|
160
|
-
- `--yup` - Yup validation
|
|
161
|
-
|
|
162
|
-
### Options
|
|
163
|
-
- `--noInstall` - Skip dependency installation
|
|
164
|
-
- `--noGit` - Skip git initialization
|
|
165
|
-
- `--CI` - Non-interactive mode
|
|
166
|
-
|
|
167
|
-
## ๐ Examples
|
|
168
|
-
|
|
169
|
-
### Full-Stack API with PostgreSQL + JWT + AI
|
|
170
|
-
```bash
|
|
171
|
-
npx deploy-bbc my-api \
|
|
172
|
-
--hono \
|
|
173
|
-
--postgres \
|
|
174
|
-
--redis \
|
|
175
|
-
--jwt \
|
|
176
|
-
--openai \
|
|
177
|
-
--zod \
|
|
178
|
-
--swagger \
|
|
179
|
-
--vitest
|
|
180
|
-
```
|
|
81
|
+
- **PostgreSQL** with Drizzle ORM
|
|
82
|
+
- **MySQL** with Drizzle ORM
|
|
83
|
+
- **MongoDB** with Mongoose
|
|
84
|
+
- **Redis** for caching and queues
|
|
181
85
|
|
|
182
|
-
|
|
183
|
-
```bash
|
|
184
|
-
npx deploy-bbc user-service \
|
|
185
|
-
--express \
|
|
186
|
-
--mongodb \
|
|
187
|
-
--session \
|
|
188
|
-
--resend \
|
|
189
|
-
--bullmq \
|
|
190
|
-
--sentry
|
|
191
|
-
```
|
|
86
|
+
---
|
|
192
87
|
|
|
193
|
-
|
|
194
|
-
```bash
|
|
195
|
-
npx deploy-bbc fast-api \
|
|
196
|
-
--bun-native \
|
|
197
|
-
--postgres \
|
|
198
|
-
--jwt \
|
|
199
|
-
--zod
|
|
200
|
-
```
|
|
88
|
+
## Authentication
|
|
201
89
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
--postgres \
|
|
207
|
-
--jwt \
|
|
208
|
-
--anthropic \
|
|
209
|
-
--vercelAI \
|
|
210
|
-
--aws \
|
|
211
|
-
--zod \
|
|
212
|
-
--scalar
|
|
213
|
-
```
|
|
90
|
+
<p align="center">
|
|
91
|
+
<img height="36" src="https://jwt.io/img/pic_logo.svg" alt="JWT" />
|
|
92
|
+
<img height="36" src="https://oauth.net/images/oauth-logo-square.png" alt="OAuth" />
|
|
93
|
+
</p>
|
|
214
94
|
|
|
215
|
-
|
|
95
|
+
- JWT authentication
|
|
96
|
+
- OAuth 2.0 providers
|
|
97
|
+
- Session-based authentication
|
|
216
98
|
|
|
217
|
-
|
|
218
|
-
my-project/
|
|
219
|
-
โโโ src/
|
|
220
|
-
โ โโโ index.ts # Application entry point
|
|
221
|
-
โ โโโ config/ # Configuration
|
|
222
|
-
โ โโโ middleware/ # Custom middleware
|
|
223
|
-
โ โโโ routes/ # API routes
|
|
224
|
-
โ โโโ types/ # TypeScript types
|
|
225
|
-
โ โโโ utils/ # Utility functions
|
|
226
|
-
โโโ docker-compose.yml # Docker services
|
|
227
|
-
โโโ Dockerfile # Container configuration
|
|
228
|
-
โโโ .env.example # Environment variables template
|
|
229
|
-
โโโ package.json # Dependencies
|
|
230
|
-
โโโ tsconfig.json # TypeScript config
|
|
231
|
-
โโโ README.md # Project documentation
|
|
232
|
-
```
|
|
99
|
+
---
|
|
233
100
|
|
|
234
|
-
##
|
|
101
|
+
## AI Integrations
|
|
235
102
|
|
|
236
|
-
|
|
103
|
+
<p align="center">
|
|
104
|
+
<img height="40" src="https://openai.com/favicon.ico" alt="OpenAI" />
|
|
105
|
+
<img height="40" src="https://www.anthropic.com/favicon.ico" alt="Anthropic" />
|
|
106
|
+
<img height="40" src="https://upload.wikimedia.org/wikipedia/commons/8/8a/Google_Gemini_logo.svg" alt="Gemini" />
|
|
107
|
+
<img height="40" src="https://vercel.com/favicon.ico" alt="Vercel" />
|
|
108
|
+
</p>
|
|
237
109
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
110
|
+
- OpenAI
|
|
111
|
+
- Anthropic Claude
|
|
112
|
+
- Google Gemini
|
|
113
|
+
- Vercel AI SDK
|
|
241
114
|
|
|
242
|
-
|
|
243
|
-
cp .env.example .env
|
|
115
|
+
---
|
|
244
116
|
|
|
245
|
-
|
|
246
|
-
nano .env
|
|
117
|
+
## Cloud and Storage
|
|
247
118
|
|
|
248
|
-
|
|
249
|
-
|
|
119
|
+
<p align="center">
|
|
120
|
+
<img height="36" src="https://a0.awsstatic.com/libra-css/images/logos/aws_logo_smile_1200x630.png" alt="AWS" />
|
|
121
|
+
<img height="36" src="https://cloud.google.com/_static/cloud/images/social-icon-google-cloud-1200-630.png" alt="GCP" />
|
|
122
|
+
<img height="36" src="https://azure.microsoft.com/svghandler/azure-logo.svg" alt="Azure" />
|
|
123
|
+
<img height="36" src="https://cdn.brandfetch.io/idJ3Cg8ymG/w/400/h/400/theme/dark/icon.jpeg?c=1bxid64Mup7aczewSAYMX&t=1668515610854" alt="Cloudflare" />
|
|
124
|
+
</p>
|
|
250
125
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
126
|
+
- **AWS** (S3, SES)
|
|
127
|
+
- **Google Cloud Platform**
|
|
128
|
+
- **Azure**
|
|
129
|
+
- **Cloudflare R2**
|
|
254
130
|
|
|
255
|
-
|
|
256
|
-
bun test
|
|
131
|
+
---
|
|
257
132
|
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
133
|
+
## Communication and Realtime
|
|
134
|
+
|
|
135
|
+
<p align="center">
|
|
136
|
+
<img height="36" src="https://cdn.brandfetch.io/id0BqaqET6/w/400/h/400/theme/dark/icon.jpeg?c=1bxid64Mup7aczewSAYMX&t=1748366671512" alt="Resend" />
|
|
137
|
+
<img height="36" src="https://sendgrid.com/favicon.ico" alt="SendGrid" />
|
|
138
|
+
<img height="36" src="https://socket.io/images/logo.svg" alt="Socket.IO" />
|
|
139
|
+
</p>
|
|
140
|
+
|
|
141
|
+
- Resend
|
|
142
|
+
- SendGrid
|
|
143
|
+
- Nodemailer
|
|
144
|
+
- Socket.IO
|
|
145
|
+
- Server-Sent Events (SSE)
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
## Developer Experience
|
|
261
150
|
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
151
|
+
<p align="center">
|
|
152
|
+
<img height="36" src="https://vitest.dev/logo.svg" alt="Vitest" />
|
|
153
|
+
<img height="36" src="https://zod.dev/_next/image?url=%2Flogo%2Flogo-glow.png&w=640&q=100" alt="Zod" />
|
|
154
|
+
<img height="36" src="https://static1.smartbear.co/swagger/media/assets/images/swagger_logo.svg" alt="Swagger" />
|
|
155
|
+
</p>
|
|
156
|
+
|
|
157
|
+
- Vitest
|
|
158
|
+
- Zod and Yup
|
|
159
|
+
- Swagger / OpenAPI
|
|
160
|
+
- Scalar documentation
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## Project Structure
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
src/
|
|
168
|
+
โโโ config/
|
|
169
|
+
โโโ middleware/
|
|
170
|
+
โโโ routes/
|
|
171
|
+
โโโ services/
|
|
172
|
+
โโโ db/
|
|
173
|
+
โโโ utils/
|
|
174
|
+
โโโ types/
|
|
175
|
+
โโโ index.ts
|
|
285
176
|
```
|
|
286
177
|
|
|
287
|
-
|
|
178
|
+
---
|
|
288
179
|
|
|
289
|
-
|
|
290
|
-
- **Dockerfile** - Optimized multi-stage build
|
|
291
|
-
- **docker-compose.yml** - Services orchestration
|
|
292
|
-
- Database containers (PostgreSQL, MySQL, Redis)
|
|
293
|
-
- Volume persistence
|
|
294
|
-
- Network configuration
|
|
180
|
+
## Docker Support
|
|
295
181
|
|
|
296
|
-
Start everything with:
|
|
297
182
|
```bash
|
|
298
|
-
docker-compose up
|
|
183
|
+
docker-compose up
|
|
299
184
|
```
|
|
300
185
|
|
|
301
|
-
|
|
186
|
+
Dockerfile and docker-compose are included by default.
|
|
302
187
|
|
|
303
|
-
|
|
304
|
-
- Comprehensive README.md
|
|
305
|
-
- .env.example with all required variables
|
|
306
|
-
- Example routes and middleware
|
|
307
|
-
- TypeScript types and interfaces
|
|
308
|
-
- Docker setup instructions
|
|
309
|
-
|
|
310
|
-
## ๐ค Contributing
|
|
188
|
+
---
|
|
311
189
|
|
|
312
|
-
|
|
190
|
+
## Contributors
|
|
313
191
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
4. Push to the branch (`git push origin feature/amazing-feature`)
|
|
318
|
-
5. Open a Pull Request
|
|
192
|
+
<a href="https://github.com/aritra69/deploy-bbc/graphs/contributors">
|
|
193
|
+
<img src="https://contrib.rocks/image?repo=aritra69/deploy-bbc" alt="Contributors" />
|
|
194
|
+
</a>
|
|
319
195
|
|
|
320
|
-
|
|
196
|
+
A big thank you to all the contributors who have helped make this project better! ๐
|
|
321
197
|
|
|
322
|
-
|
|
198
|
+
---
|
|
323
199
|
|
|
324
|
-
##
|
|
200
|
+
## Author
|
|
325
201
|
|
|
326
|
-
|
|
327
|
-
- [Bun](https://bun.sh) - Fast JavaScript runtime
|
|
328
|
-
- [Hono](https://hono.dev) - Ultrafast web framework
|
|
329
|
-
- [Clack](https://github.com/natemoo-re/clack) - Beautiful CLI prompts
|
|
330
|
-
- [Drizzle ORM](https://orm.drizzle.team) - TypeScript ORM
|
|
331
|
-
- [Zod](https://zod.dev) - TypeScript-first validation
|
|
202
|
+
**Aritra Sarkar**
|
|
332
203
|
|
|
333
|
-
|
|
204
|
+
- GitHub: [https://github.com/aritra69](https://github.com/aritra69)
|
|
205
|
+
- Email: <aritrasarkar2002@gmail.com>
|
|
334
206
|
|
|
335
|
-
|
|
336
|
-
- [npm Package](https://www.npmjs.com/package/deploy-bbc)
|
|
337
|
-
- [Report Issues](https://github.com/aritra69/deploy-bbc/issues)
|
|
207
|
+
---
|
|
338
208
|
|
|
339
|
-
##
|
|
209
|
+
## License
|
|
340
210
|
|
|
341
|
-
|
|
211
|
+
MIT License
|
|
342
212
|
|
|
343
213
|
---
|
|
344
214
|
|
|
345
|
-
|
|
215
|
+
## Support
|
|
216
|
+
|
|
217
|
+
If this project helps you, consider โญ starring the repository.
|
|
218
|
+
|
|
219
|
+
Issues, pull requests, and discussions are welcome!
|
package/dist/index.js
CHANGED
|
@@ -5940,18 +5940,23 @@ var run_cli = async () => {
|
|
|
5940
5940
|
if (cliOptions.CI) {
|
|
5941
5941
|
return build_from_flags(cliProvidedName, cliOptions);
|
|
5942
5942
|
}
|
|
5943
|
+
const blue = "\x1B[38;5;75m";
|
|
5944
|
+
const gray = "\x1B[90m";
|
|
5945
|
+
const reset = "\x1B[0m";
|
|
5943
5946
|
const intro = `
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
|
|
5949
|
-
|
|
5950
|
-
|
|
5951
|
-
|
|
5952
|
-
|
|
5947
|
+
${gray}____________________________________________________________________${reset}
|
|
5948
|
+
${gray}/ \\${reset}
|
|
5949
|
+
${gray}|${reset} ${blue}โโโโ โโโ โโโโ โ โโโโ โ โ โโโโ โโโโ โโโ${reset} ${gray}|${reset}
|
|
5950
|
+
${gray}|${reset} ${blue}โ โ โโโ โ โ โ โ โ โโโโ โโโโ โโโโ โ${reset} ${gray}|${reset}
|
|
5951
|
+
${gray}|${reset} ${blue}โโโโ โโโ โโโโ โโโ โโโโ โโโโ โโโโ โโโโ โโโ${reset} ${gray}|${reset}
|
|
5952
|
+
${gray}|${reset} ${gray}|${reset}
|
|
5953
|
+
${gray}|${reset} \uD83D\uDE80 ${blue}Best Backend Code${reset} ${gray}|${reset}
|
|
5954
|
+
${gray}|${reset} ${gray}|${reset}
|
|
5955
|
+
${gray}|${reset} ${gray}Bootstrap production-ready backends with Bun & TypeScript${reset} ${gray}|${reset}
|
|
5956
|
+
${gray}|${reset} ${gray}[ Bun ] ---------- [ TypeScript ] ---------- [ Docker ]${reset} ${gray}|${reset}
|
|
5957
|
+
${gray}\\____________________________________________________________________/${reset}
|
|
5953
5958
|
`;
|
|
5954
|
-
console.log(
|
|
5959
|
+
console.log(intro);
|
|
5955
5960
|
Ie(source_default.bgCyan(source_default.black(" deploy-bbc ")));
|
|
5956
5961
|
const project = await Ce({
|
|
5957
5962
|
...add_cli_header("\uD83D\uDCE6 CORE"),
|