Kumi
dbf7cde183
- Added standard project documentation including README.md - Added .gitignore for ignoring unnecessary files (.venv, *.pyc, etc.) - Implemented basic Django application structure with accounts and resolver apps - Configured Django settings, including two-factor auth and database setup - Set up Django admin and basic model structures for Prefixes, Suffixes, Identifiers, and Permissions - Added templates for accounts and resolver management - Configured initial migrations and custom user model - Included poetry dependencies and project setup configuration This commit sets up the fundamental structure of the FreeDOI project, enabling DOI-like identifier creation and resolution.
17 lines
No EOL
406 B
JSON
17 lines
No EOL
406 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python Debugger: Django",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"args": [
|
|
"runserver",
|
|
"8108"
|
|
],
|
|
"django": true,
|
|
"autoStartBrowser": false,
|
|
"program": "${workspaceFolder}/freedoi/manage.py"
|
|
}
|
|
]
|
|
} |