Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

got python stig parsing working, and libsql db working #11

Draft
wants to merge 29 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9ae0dc0
got python stig parsing working, and libsql db working
aaronlippold Dec 14, 2023
ac69ddb
Update guidancedb.dbml
HackerShark Dec 14, 2023
90d0859
first start at the db design
aaronlippold Dec 14, 2023
f33be04
removed duplicate item in benchmarks, updated test2.py to include the…
HackerShark Dec 14, 2023
1431479
adding database report, html and pdf
aaronlippold Dec 14, 2023
725cf6e
updating git commit
aaronlippold Dec 15, 2023
d16168f
updating database design
aaronlippold Dec 15, 2023
729666f
remving .DS_Store file
aaronlippold Dec 15, 2023
27e55df
removing web
aaronlippold Dec 15, 2023
3516726
adding new web dir
aaronlippold Dec 15, 2023
3002f4a
fixing small typo
aaronlippold Dec 15, 2023
15ab794
removed the marketing from the web index file
aaronlippold Dec 15, 2023
24ec117
Updated schema. Changed naming for the python file and database file.…
HackerShark Dec 15, 2023
fb098c7
moving over update.py from other branch. added additional updates not…
HackerShark Dec 15, 2023
4270c59
fixed a typo, rebuilt database
HackerShark Dec 15, 2023
7a2bf04
added DBML version of current database schema
aaronlippold Dec 15, 2023
21af2e6
adding start of documentation for the database to the DBML file
aaronlippold Dec 16, 2023
9e5f635
reorganizng, updating schema, testing Atlas for DB managment, regener…
aaronlippold Dec 17, 2023
7b2915d
added SQLAlchemy to the workflow, migrated DB upkeep to Atlas, and ta…
aaronlippold Dec 17, 2023
0385a97
started adding the bones of the SQLAlcamey classes with the kind assi…
aaronlippold Dec 18, 2023
6b6d124
further updates to the python interface, documentation, and formatting
aaronlippold Dec 18, 2023
84b42ba
started adding tests
aaronlippold Dec 18, 2023
f974c9d
finished the models and 90% of the interfaces, still have some 1-to-1…
aaronlippold Dec 19, 2023
fdb579e
Test
aaronlippold Dec 20, 2023
9aaae6b
added the prisma.schema version of the DB, added unique contraint to …
aaronlippold Dec 21, 2023
017afc6
renamed file to standard convention
aaronlippold Dec 21, 2023
6e5e4da
added a datasource to the schema.prisma file
aaronlippold Dec 21, 2023
f686bf6
cleaning up file
HackerShark Jan 1, 2024
a277dd8
reworked logic to use sqlalchemy and check if the file already exists…
HackerShark Jan 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 55 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,55 @@
node_modules
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

# Sphinx documentation
docs/_build/

node_modules
venv
.DS_Store
*.DS_Store**
Loading