Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mst-mkt/iniad-cs2-teamwork
PerQS - プロフィール共有交換サービス
https://github.com/mst-mkt/iniad-cs2-teamwork
Last synced: 27 days ago
JSON representation
PerQS - プロフィール共有交換サービス
- Host: GitHub
- URL: https://github.com/mst-mkt/iniad-cs2-teamwork
- Owner: mst-mkt
- Created: 2023-12-08T04:13:05.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-05T03:44:24.000Z (11 months ago)
- Last Synced: 2024-05-01T12:40:42.672Z (7 months ago)
- Language: Python
- Homepage:
- Size: 425 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![PerQSLOGO](https://github.com/mst-mkt/iniad-cs2-teamwork/assets/136313625/6f56b010-07c7-4d0a-bc9e-724035d6a654)
Personal Quick Stock(PerQS)
INIAD-cs2-teamwork## 使用技術一覧
## ディレクトリ構成
```
├─.vscode
│ ├─extensions.json
│ └─settings.json
├─collect
│ ├─__pycache__
│ ├─migrations
│ │ ├─__pycache__
│ │ └─__init__.py
│ ├─static\collect\css
│ │ └─style.css
│ ├─templates\collect
│ │ └─index.html
│ ├─__init__.py
│ ├─admin.py
│ ├─apps.py
│ ├─models.py
│ ├─tests.py
│ ├─urls.py
│ └─views.py
├─config
│ ├─__pycache__
│ ├─__init__.py
│ ├─asgi.py
│ ├─settings.py
│ ├─urls.py
│ └─wsgi.py
├─venv
│ ├─Include
│ ├─Lib
│ ├─Scripts
│ └─pyvenv.cfg
├─.gitignore
├─db.sqlite3
├─manage.py
├─README.md
└─requirements.txt
```[Top]