chore: bump version 0.0.0 -> 0.0.1

This commit is contained in:
“Naeel”
2026-09-02 15:07:33 +03:00
parent b930dc8656
commit a71eff8845
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "tf-docs",
"version": "0.0.0",
"version": "0.0.1",
"description": "Terraform docs service (S3 static /docs) — initial skeleton",
"main": "server.js",
"scripts": {
+1 -1
View File
@@ -5,7 +5,7 @@ const path = require('path');
const { S3Client, GetObjectCommand, HeadBucketCommand } = require('@aws-sdk/client-s3');
const PORT = process.env.PORT || 3000;
const VERSION = process.env.APP_VERSION || '0.0.0';
const VERSION = process.env.APP_VERSION || '0.0.1';
const SERVICE = 'tf-docs';
const S3_BUCKET = process.env.S3_BUCKET || '';
const DOCS_S3_PREFIX = (process.env.DOCS_S3_PREFIX || 'docs').replace(/^\/+|\/+$/g, '');