Skip to content

Commit

Permalink
Beginning password management database config
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobranz committed Feb 20, 2023
1 parent e583d8f commit 917fbc0
Show file tree
Hide file tree
Showing 5,963 changed files with 14 additions and 787,023 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Empty file removed JakeChat/ChatTest/__init__.py
Empty file.
3 changes: 0 additions & 3 deletions JakeChat/ChatTest/admin.py

This file was deleted.

6 changes: 0 additions & 6 deletions JakeChat/ChatTest/apps.py

This file was deleted.

Empty file removed JakeChat/ChatTest/consumers.py
Empty file.
Empty file.
3 changes: 0 additions & 3 deletions JakeChat/ChatTest/models.py

This file was deleted.

Empty file removed JakeChat/ChatTest/routing.py
Empty file.
4 changes: 0 additions & 4 deletions JakeChat/ChatTest/templates/chatPage.html

This file was deleted.

3 changes: 0 additions & 3 deletions JakeChat/ChatTest/tests.py

This file was deleted.

13 changes: 0 additions & 13 deletions JakeChat/ChatTest/urls.py

This file was deleted.

9 changes: 0 additions & 9 deletions JakeChat/ChatTest/views.py

This file was deleted.

Empty file removed JakeChat/JakeChat/__init__.py
Empty file.
Binary file removed JakeChat/JakeChat/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file not shown.
Binary file removed JakeChat/JakeChat/__pycache__/urls.cpython-310.pyc
Binary file not shown.
Binary file removed JakeChat/JakeChat/__pycache__/wsgi.cpython-310.pyc
Binary file not shown.
16 changes: 0 additions & 16 deletions JakeChat/JakeChat/asgi.py

This file was deleted.

127 changes: 0 additions & 127 deletions JakeChat/JakeChat/settings.py

This file was deleted.

7 changes: 0 additions & 7 deletions JakeChat/JakeChat/urls.py

This file was deleted.

16 changes: 0 additions & 16 deletions JakeChat/JakeChat/wsgi.py

This file was deleted.

Empty file removed JakeChat/db.sqlite3
Empty file.
22 changes: 0 additions & 22 deletions JakeChat/manage.py

This file was deleted.

14 changes: 14 additions & 0 deletions SQL/password_manager.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
create table if not exists vault (
id int not null auto_increment,
firstname varchar(255) default null,
lastname varchar(255) default null,
username varchar(255),
password varchar(255),
comment varchar(255),
modified datetime,
primary key (id)
);

-- Set default entries to test functionality
insert into vault values (1, "Jacob", "Ranz", "jranz", "password", "Test password", current_timestamp());
insert into vault values (2, "Tony", "Smith", "tsmith", "password", "Test password", current_timestamp());
Loading

0 comments on commit 917fbc0

Please sign in to comment.