Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dentsusoken/tqa-diw-verifier
https://github.com/dentsusoken/tqa-diw-verifier
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dentsusoken/tqa-diw-verifier
- Owner: dentsusoken
- Created: 2024-07-31T02:01:31.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T09:05:48.000Z (5 months ago)
- Last Synced: 2024-11-11T06:20:58.434Z (2 months ago)
- Language: JavaScript
- Size: 108 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Verifire-Frontend
Verifire-Frontendは、ユーザーの資格情報の確認を行うためにバックエンドの認証サービスと連携します。## バージョン情報
| 言語・フレームワーク | バージョン |
|------------|------------------|
| Node.js | 20.16.0 |
| Express | 4.19.2 |
その他パッケージのバージョンはpackage.jsonを参照してください。## ディレクトリ情報
```bash
>tree -a -I "node_modules|.git" -L 2
.
├── .gitignore
├── README.md
├── app.js
├── bin
│ └── www
├── eslint.config.js
├── package-lock.json
├── package.json
├── public
│ └── stylesheets
├── routes
│ └── index.js
└── views
├── error.pug
├── index.pug
├── layout.pug
├── presentations.pug
└── verifiable.pug6 directories, 13 files
```## インストール方法
1. リポジトリのクローン
```bash
git clone https://github.com/dentsusoken/tqa-diw-verifier.git
```2. ディレクトリの変更
```bash
cd project
```
3. 依存パッケージをインストール```bash
npm install
```
4. サーバー起動
```bash
npm run start
```
5. ブラウザで`http://localhost:3000`にアクセスして動作確認