docs: update README.md

This commit is contained in:
Takeshi Kimata
2024-06-23 12:08:55 +09:00
parent faf5790a01
commit 906e672da7
6 changed files with 13 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
# UnitTCMS
Open Source Test Case Management Web Application
Open Source Test Case Management System
## Demo

View File

@@ -1,4 +1,4 @@
# UnitTCMS Backend
# unittcms Backend
## Install dependencies
@@ -11,7 +11,9 @@ npm install
Create `.env` File
```
NEXT_PUBLIC_BACKEND_ORIGIN=http://localhost:3001
FRONTEND_ORIGIN=http://localhost:8000
PORT=8001
SECRET_KEY=your-secret-key
```
## Set up database
@@ -23,7 +25,7 @@ npm run migrate
## Run the development server
```bash
npm run start
node --env-file=.env index.js
```
## Database operation command

View File

@@ -1,4 +1,4 @@
# UnitTCMS Frontend
# unittcms Frontend
## Install dependencies
@@ -11,7 +11,7 @@ npm install
Create `.env` File
```
NEXT_PUBLIC_BACKEND_ORIGIN=http://localhost:3001
NEXT_PUBLIC_BACKEND_ORIGIN=http://localhost:8001
```
## Run the development server

View File

@@ -2,8 +2,7 @@
"Index": {
"get_started": "Get Started",
"demo": "Demo",
"oss_tcmt": "Open Source Test Case Management",
"web_application": "Web Application",
"oss_tcms": "Open Source Test Case Management System",
"integrate_and_manage": "Integrate and manage all your software testing.",
"oss_title": "Open Source",
"oss_detail": "UnitTCMS is free and open source. The application can be self-hosted. It can be deployed in environments with strict security requirements.",
@@ -19,7 +18,7 @@
"case_run": "Test Runs"
},
"Header": {
"title": "Open Source Test Case Management Tool",
"title": "Open Source Test Case Management System",
"description": "Integrate and manage all your software testing",
"docs": "Docs",
"projects": "Projects",

View File

@@ -2,8 +2,7 @@
"Index": {
"get_started": "テスト管理を始める",
"demo": "デモ",
"oss_tcmt": "オープンソーステストケース管理",
"web_application": "ウェブアプリケーション",
"oss_tcms": "オープンソーステストケース管理システム",
"integrate_and_manage": "ソフトウェア開発にかかわるすべてのテストを統合管理",
"oss_title": "オープンソース",
"oss_detail": "UnitTCMSは無料でオープンソースです。アプリケーションをセルフホストすることができます。セキュリティ要件の厳しい環境でも導入することができます。",
@@ -19,7 +18,7 @@
"case_run": "テストラン"
},
"Header": {
"title": "オープンソーステストケース管理ツール",
"title": "オープンソーステストケース管理システム",
"description": "ソフトウェア開発にかかわるすべてのテストを統合管理",
"docs": "ドキュメント",
"projects": "プロジェクト",

View File

@@ -28,9 +28,7 @@ export default function MainTitle({ locale }: Props) {
class: 'lg:text-5xl md:text-5xl sm:text-5xl text-5xl',
})}
>
{t('oss_tcmt')}
<br />
{t('web_application')}
{t('oss_tcms')}
</h1>
<h4 className={subtitle({ class: 'mt-4' })}>{t('integrate_and_manage')}</h4>