Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e01baa4
Initial commit
nabin2004 Nov 20, 2024
ba2245e
Init file structure
nabin2004 Nov 20, 2024
130d509
Successfully done django setup
nabin2004 Nov 20, 2024
55170dc
Done setup for auth
nabin2004 Nov 20, 2024
beab24a
Full setup of database and final ER diagram generation done
nabin2004 Nov 20, 2024
423a52b
Adding the changes before committing
nabin2004 Nov 20, 2024
e4bedc5
Added crucial and most needed APIs
nabin2004 Nov 21, 2024
c7db2d9
Added the requirements.txt and gitignore file
nabin2004 Nov 21, 2024
06a7b84
Updated till login view and implemented common apis
nabin2004 Nov 23, 2024
25c5195
Merge branch 'main' of https://github.com/nabin2004/testHeritageGraph
nabin2004 Nov 23, 2024
5f15bd5
Fixed loginpanel, data-catalog home screen
nabin2004 Nov 23, 2024
7fa9057
Fixed the base name
nabin2004 Nov 29, 2024
040803f
Updated the code for deployment
nabin2004 Nov 29, 2024
edc7274
Updated the code for deploymentx2
nabin2004 Nov 29, 2024
f725563
Made frontend deployable
nabin2004 Nov 29, 2024
ddaf169
Fixed the probems with viewprofile and me profile view
nabin2004 Dec 3, 2024
1927a20
Added the recent pulls
nabin2004 Dec 3, 2024
e7ed4a6
Fixed the unrelated branch commit issue
nabin2004 Dec 18, 2024
5fa650d
removed .pyc file
tekrajchhetri Dec 19, 2024
4eca857
gitignore file udpated
tekrajchhetri Dec 19, 2024
a2f68df
gitignore updated
tekrajchhetri Dec 19, 2024
31b10e7
Fixed the migrations files
nabin2004 Feb 11, 2025
4ecfc5f
Ignored the db.sqlite3
nabin2004 Feb 11, 2025
8d2234b
Fixed the github.qkg1.topmit issue
nabin2004 Feb 11, 2025
9f87c23
Merge branch 'main' into django
nabin2004 Feb 23, 2025
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@

data/
# Ignore everything in the docs directory
/docs/*
# But do not ignore the docs directory itself
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# CHLOD
# CHLOD
74 changes: 74 additions & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# General
*.log
*.pot
*.pyc
*.pyo
*.pyd
__pycache__/
*.swp
*.swo
.DS_Store
Thumbs.db

# Python
*.env
*.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Django
*.sqlite3
db.sqlite3
/media/
staticfiles/
*.py[cod]
*.so
*.egg
*.egg-info/
.eggs/
*.manifest
*.spec

# macOS
.DS_Store
.AppleDouble
.LSOverride
Icon\r

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/

# PyCharm
.idea/
*.iml

# Visual Studio Code
.vscode/
*.code-workspace

# Linux
*.pid
*.seed

# System Files
*.bak
*.tmp
*.temp
*.orig

# Coverage
.coverage
*.cover
.hypothesis/
.pytest_cache/

# Migrations
migrations/

data/
Loading