Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hongbo-wei/global-status-of-cc-security-certification
Data visualization of CC Security Certification using VUE, Django, and MySQL.
https://github.com/hongbo-wei/global-status-of-cc-security-certification
big-date common-criteria data-analysis data-visualisation data-visualization
Last synced: 13 days ago
JSON representation
Data visualization of CC Security Certification using VUE, Django, and MySQL.
- Host: GitHub
- URL: https://github.com/hongbo-wei/global-status-of-cc-security-certification
- Owner: hongbo-wei
- License: mit
- Created: 2023-08-15T04:41:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-23T09:24:34.000Z (about 1 year ago)
- Last Synced: 2024-11-14T11:11:38.233Z (2 months ago)
- Topics: big-date, common-criteria, data-analysis, data-visualisation, data-visualization
- Language: JavaScript
- Homepage:
- Size: 2.99 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Common Criteria Global Certification Status
## Project Preview
### Instructions
Django Commands in Terminal:
# Run the app
python manage.py runserverCheck database model inforamtion:
# You can add your table name or not
python manage.py inspectdb (mytable)By running makemigrations, you’re telling Django that you’ve made some changes to your models and that you’d like the changes to be stored as a migration. Migrations are how Django stores changes to your models (and thus your database schema) - they’re files on disk.
python3 manage.py makemigrations
Migrate your models (in models.py):
python3 manage.py migrate
The migrate command looks at the INSTALLED_APPS setting and creates any necessary database tables according to the database settings in my_project/settings.py file and the database migrations shipped with the app.