Skip to content

VediYD/iqcraft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iqcraft

Folder Structure

iqcraft/
│
├── iqcraft/
│   ├── __init__.py
│   ├── settings.py  # database configuration, static file locations, other settings go here
│   ├── urls.py      # 
│   └── wsgi.py      # 
│
├── impart/
│   ├── migrations/
│   ├── static/  # common files that modify the appearance of the website
│   │   ├── css/
│   │   ├── js/
│   │   └── img/
│   │
│   ├── templates/
│   │   ├── base.html    # simple page which imports the html css, parts common across website (header navigataion session etc)
│   │   ├── login.html   # login page
│   │   ├── home.html    # basic page that allows uploading documents
│   │   └── editor.html  # the window where they can annotate model responses
│   │
│   ├── clients/
│   │   ├── __init__.py
│   │   └── clients.py  # python code to connect to public AI providers to generate outputs
│   │
│   ├── __init__.py  #
│   ├── admin.py     #
│   ├── apps.py      #
│   ├── models.py    # classes to control updates to database
│   ├── tests.py     # 
│   └── views.py     # website API endpoints
│
├── documents/  # uploaded files are saved in this folder
├── .env        # file to store the environment variables  #DO NOT COMMIT
│
└── manage.py

Wireframe

img.png

Link

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published