Update ROADMAP.md
This commit is contained in:
+55
-55
@@ -2,61 +2,61 @@
|
|||||||
|
|
||||||
### Draft tree for webapp
|
### Draft tree for webapp
|
||||||
|
|
||||||
paccrypt-webapp/
|
\paccrypt-webapp/
|
||||||
├── static/
|
\├── static/
|
||||||
│ ├── audio/
|
\│ ├── audio/
|
||||||
│ │ └── chomp.mp3
|
\│ │ └── chomp.mp3
|
||||||
│ ├── css/
|
\│ ├── css/
|
||||||
│ │ └── styles.css
|
\│ │ └── styles.css
|
||||||
│ ├── fonts/
|
\│ ├── fonts/
|
||||||
│ │ └── PressStart2P-Regular.ttf
|
\│ │ └── PressStart2P-Regular.ttf
|
||||||
│ ├── img/
|
\│ ├── img/
|
||||||
│ │ ├── Github_logo.png
|
\│ │ ├── Github_logo.png
|
||||||
│ │ ├── PacCrypt.png
|
\│ │ ├── PacCrypt.png
|
||||||
│ │ ├── PacCrypt_W-Background.png
|
\│ │ ├── PacCrypt_W-Background.png
|
||||||
│ │ ├── PacCrypt_W-Backgroud_Name.png
|
\│ │ ├── PacCrypt_W-Backgroud_Name.png
|
||||||
│ │ ├── PacCrypt_W-Name.png
|
\│ │ ├── PacCrypt_W-Name.png
|
||||||
│ │ └── sitemap.png <-- **Change img**
|
\│ │ └── sitemap.png <-- **Change img**
|
||||||
│ └── js/ <-- **Pending changes**
|
\│ └── js/ <-- **Pending changes**
|
||||||
│ ├── encryption.js
|
\│ ├── encryption.js
|
||||||
│ ├── fileops.js
|
\│ ├── fileops.js
|
||||||
│ ├── main.js
|
\│ ├── main.js
|
||||||
│ ├── pacman.js
|
\│ ├── pacman.js
|
||||||
│ └── ui.js
|
\│ └── ui.js
|
||||||
├── templates/
|
\├── templates/
|
||||||
│ ├── 403.html
|
\│ ├── 403.html
|
||||||
│ ├── 404.html
|
\│ ├── 404.html
|
||||||
│ ├── 500.html
|
\│ ├── 500.html
|
||||||
│ ├── admin.html
|
\│ ├── admin.html
|
||||||
│ ├── admin_login.html
|
\│ ├── admin_login.html
|
||||||
│ ├── admin_settings.html
|
\│ ├── admin_settings.html
|
||||||
│ ├── admin_setup.html
|
\│ ├── admin_setup.html
|
||||||
│ ├── index.html
|
\│ ├── index.html
|
||||||
│ └── pickup.html
|
\│ └── pickup.html
|
||||||
├── application_data/ <-- *New*
|
\├── application_data/ <-- *New*
|
||||||
│ ├── scripts/ <-- *New*
|
\│ ├── scripts/ <-- *New*
|
||||||
│ │ ├── start_dev <-- *Moved*
|
\│ │ ├── start_dev <-- *Moved*
|
||||||
│ │ ├── start_prod <-- *Moved*
|
\│ │ ├── start_prod <-- *Moved*
|
||||||
│ │ ├── restart_dev <-- *New*
|
\│ │ ├── restart_dev <-- *New*
|
||||||
│ │ ├── restart_prod <-- *New*
|
\│ │ ├── restart_prod <-- *New*
|
||||||
│ │ └── stop <-- *New*
|
\│ │ └── stop <-- *New*
|
||||||
│ ├── settings.json <-- *Moved*
|
\│ ├── settings.json <-- *Moved*
|
||||||
│ ├── requirements.txt <-- *Moved*
|
\│ ├── requirements.txt <-- *Moved*
|
||||||
│ ├── admin_cred <-- **Generated once admin is setup** / *Moved*
|
\│ ├── admin_cred <-- **Generated once admin is setup** / *Moved*
|
||||||
│ └── admin_hash <-- **Generated once admin is setup** / *Moved*
|
\│ └── admin_hash <-- **Generated once admin is setup** / *Moved*
|
||||||
├── paccrypt_algos/ <-- *New*
|
\├── paccrypt_algos/ <-- *New*
|
||||||
│ ├── aes_gcm.py <-- *New*
|
\│ ├── aes_gcm.py <-- *New*
|
||||||
│ ├── aes_cbc.py <-- *New*
|
\│ ├── aes_cbc.py <-- *New*
|
||||||
│ ├── xchacha.py <-- *New*
|
\│ ├── xchacha.py <-- *New*
|
||||||
│ ├── rsa_hybrid.py <-- *New*
|
\│ ├── rsa_hybrid.py <-- *New*
|
||||||
│ └── kyber_hybrid.py <-- *New*
|
\│ └── kyber_hybrid.py <-- *New*
|
||||||
├── pacshare/ <-- **Generated at time of first PacShare upload, location customizable** / *New*
|
\├── pacshare/ <-- **Generated at time of first PacShare upload, location customizable** / *New*
|
||||||
│ ├── <file_id>pdf/jpeg/etc.paccrypt <-- **Encrypted binary file** / *Moved*
|
\│ ├── <file_id>pdf/jpeg/etc.paccrypt <-- **Encrypted binary file** / *Moved*
|
||||||
│ └── <file_id>meta.paccrypt <-- **Encrypted metadata** / *Moved*
|
\│ └── <file_id>meta.paccrypt <-- **Encrypted metadata** / *Moved*
|
||||||
├── README.md <-- **Needs Updated**
|
\├── README.md <-- **Needs Updated**
|
||||||
├── ROADMAP.md
|
\├── ROADMAP.md
|
||||||
├── LICENSE <-- *New*
|
\├── LICENSE <-- *New*
|
||||||
└── app.py
|
\└── app.py
|
||||||
---
|
---
|
||||||
|
|
||||||
### Phase 0
|
### Phase 0
|
||||||
|
|||||||
Reference in New Issue
Block a user