Skip to content

Commit 9c93c9f

Browse files
authored
Initial commit
0 parents  commit 9c93c9f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+16233
-0
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "develop",
9+
"updateInternalDependencies": "patch",
10+
"ignore": [],
11+
"repo": "ciscode/nest-js-developer-kit",
12+
"preState": null
13+
}

.changeset/thick-maps-raise.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ciscode/nestjs-developerkit": patch
3+
---
4+
5+
Patch 1, testing Changeset Automation

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 2
9+
10+
[*.md]
11+
trim_trailing_whitespace = false

.env.example

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Environment Configuration
2+
# Copy this file to .env and update with your actual values
3+
4+
# Application
5+
NODE_ENV=development
6+
LOG_LEVEL=debug
7+
8+
# Database
9+
MONGODB_URI=mongodb://localhost:27017/dev-db
10+
POSTGRES_URI=postgresql://user:password@localhost:5432/dev-db
11+
12+
# Testing
13+
TEST_DATABASE_URI=mongodb://localhost:27017/test-db
14+
15+
# Security
16+
JWT_SECRET=your-super-secret-jwt-key-change-in-production
17+
ENCRYPTION_KEY=your-encryption-key-change-in-production
18+
19+
# API Configuration
20+
API_PORT=3000
21+
API_TIMEOUT=30000
22+
23+
# Features
24+
ENABLE_LOGGING=true
25+
ENABLE_AUDIT=true
26+
# Add your custom environment variables below
27+
# ===========================================================================

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @CISCODE-MA/devops
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: "🐛 Bug report"
2+
description: Report something that isn’t working
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: input
7+
id: version
8+
attributes:
9+
label: Package version
10+
description: What version are you using?
11+
placeholder: "e.g. 1.2.3"
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: what_happened
17+
attributes:
18+
label: What happened?
19+
description: Describe the bug clearly.
20+
placeholder: "Steps, logs, screenshots..."
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: expected
26+
attributes:
27+
label: What did you expect?
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: repro
33+
attributes:
34+
label: Reproduction steps
35+
placeholder: |
36+
1.
37+
2.
38+
3.
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: env
44+
attributes:
45+
label: Environment
46+
placeholder: |
47+
Node:
48+
NestJS:
49+
OS:
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: "✨ Feature request"
2+
description: Suggest an improvement or a new feature
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: textarea
7+
id: problem
8+
attributes:
9+
label: Problem statement
10+
description: What problem are you trying to solve?
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: proposal
16+
attributes:
17+
label: Proposed solution
18+
description: What do you want to happen?
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: alternatives
24+
attributes:
25+
label: Alternatives considered
26+
description: Other approaches you considered.
27+
validations:
28+
required: false
29+
30+
- type: textarea
31+
id: context
32+
attributes:
33+
label: Additional context
34+
description: Links, screenshots, examples.
35+
validations:
36+
required: false

0 commit comments

Comments
 (0)