Skip to content

Commit ef8850a

Browse files
Merge pull request #1 from jettysaivarun/main
Fascio-temp
2 parents ab9b010 + 87ac6ed commit ef8850a

18 files changed

Lines changed: 87 additions & 21 deletions

File tree

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
.DS_Store
2+
Thumbs.db
3+
4+
.vscode/
5+
.idea/
6+
*.swp
7+
*.swo
8+
9+
.env
10+
.env.*
11+
!.env.example
12+
13+
__pycache__/
14+
*.py[cod]
15+
*$py.class
16+
17+
*.so
18+
19+
.venv/
20+
venv/
21+
env/
22+
ENV/
23+
24+
*.log
25+
db.sqlite3
26+
db.sqlite3-journal
27+
28+
backend/media/
29+
backend/staticfiles/
30+
31+
.coverage
32+
.coverage.*
33+
htmlcov/
34+
.pytest_cache/
35+
.mypy_cache/
36+
.ruff_cache/
37+
38+
39+
frontend/node_modules/
40+
41+
frontend/dist/
42+
frontend/.vite/
43+
44+
npm-debug.log*
45+
yarn-debug.log*
46+
pnpm-debug.log*
47+
48+
frontend/.env
49+
frontend/.env.*
50+
!frontend/.env.example
51+
52+
*.tmp
53+
*.temp
54+
.cache/
55+
.parcel-cache/
56+
57+
docker-compose.override.yml
58+
59+
*.local
60+
*.local.json
61+
62+
*.pem
63+
*.key
64+
*.crt
65+
66+
*.bak
67+
*.swp
68+
*.swo
69+
*~

backend/apps/authentication/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
class AuthenticationConfig(AppConfig):
5-
name = 'authentication'
5+
name = 'apps.authentication'

backend/apps/authentication/urls.py

Whitespace-only changes.
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
from django.shortcuts import render
2-
3-
# Create your views here.

backend/apps/catalog/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
class CatalogConfig(AppConfig):
5-
name = 'catalog'
5+
name = 'apps.catalog'

backend/apps/catalog/urls.py

Whitespace-only changes.

backend/apps/catalog/views.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
from django.shortcuts import render
2-
3-
# Create your views here.

backend/apps/orders/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
class OrdersConfig(AppConfig):
5-
name = 'orders'
5+
name = 'apps.orders'

backend/apps/orders/urls.py

Whitespace-only changes.

backend/apps/orders/views.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
from django.shortcuts import render
2-
3-
# Create your views here.

0 commit comments

Comments
 (0)