-
Notifications
You must be signed in to change notification settings - Fork 4
Directory Structure
Yuki-Inamoto edited this page Jul 8, 2015
·
1 revision
./Brain_Hacker/
├── app.py
├── backend.py
├── forms/
│ ├── __init__.py
│ └── forms.py
├── handlers/
│ ├── __init__.py
│ ├── base_handler.py
│ ├── auth_handler.py
│ ├── group_handler.py
│ ├── index_handler.py
│ ├── room_handler.py
│ ├── user_handler.py
│ ├── brainstorming/
│ │ ├── __init__.py
│ │ ├── chat.py
│ │ ├── cards.py
│ │ └── rooms.py
│ ├── agent/
│ │ ├── __init__.py
│ │ ├── keyword_extraction.py
│ │ ├── kizAPI.py
│ │ ├── named_entity_extraction.py
│ │ ├── praise.py
│ │ └── sentence_generator.py
│ └── util.py
├── models/
│ ├── __init__.py
│ ├── base_model.py
│ ├── chat.py
│ ├── group.py
│ ├── idea.py
│ ├── relations.py
│ ├── room.py
│ └── user.py
├── modules/
│ ├── __init__.py
│ └── modules.py
├── templates/
│ ├── base.html
│ ├── index.html
│ ├── layout.html
│ ├── auth/
│ │ ├── login.html
│ │ └── signup.html
│ ├── group/
│ │ ├── group.html
│ │ ├── groups.html
│ │ ├── group_users.html
│ │ └── member_addition.html
│ ├── modules/
│ │ ├── create_modal.html
│ │ ├── delete_modal.html
│ │ ├── edit_modal.html
│ │ └── search_bar.html
│ ├── room/
│ │ ├── room.html
│ │ └── rooms.html
│ └── user/
│ ├── user.html
│ └── users.html
├── static/
│ ├── css/
│ ├── font/
│ ├── images/
│ ├── js/
│ ├── lib/
│ ├── robots.txt
│ └── script.js
├── tests/
├── urls.py
├── LICENSE
├── README.md
├── requirements.txt
└── settings.py