https://github.com/learncodingeasy/account
App Account
https://github.com/learncodingeasy/account
django django-cors-headers djangorestframework djangorestframework-simplejwt pillow vue
Last synced: 10 months ago
JSON representation
App Account
- Host: GitHub
- URL: https://github.com/learncodingeasy/account
- Owner: LearnCodingEasy
- License: other
- Created: 2024-11-22T15:34:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-23T00:19:13.000Z (about 1 year ago)
- Last Synced: 2025-01-24T00:37:45.163Z (12 months ago)
- Topics: django, django-cors-headers, djangorestframework, djangorestframework-simplejwt, pillow, vue
- Language: Python
- Homepage:
- Size: 17.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ๐งพ Account
โจ **App Account**
---
# ๐จ FrontEnd
## ๐ ๏ธ **Languages**
- ๐๏ธ **Vue**: ูุฅูุดุงุก ูุงุฌูุงุช ุชูุงุนููุฉ ูุณุฑูุนุฉ.
- ๐ **HTML**: ูุจูุงุก ูููู ุตูุญุงุช ุงูููุจ.
- ๐จ **CSS**: ูุชูุณูู ุงูู
ุธูุฑ ุงูุฎุงุฑุฌู ููุตูุญุงุช.
- ๐งโ๐ป **JavaScript**: ูุฅุถุงูุฉ ุงูุฏููุงู
ูููุฉ ูุงูุชูุงุนู.
## ๐ **Libraries and Frameworks**
1. ๐ **Tailwind**: ุฅุทุงุฑ ุนู
ู CSS ูุชุตู
ูู
ุณุฑูุน ูู
ุฑู.
2. ๐ญ **PrimeVue**: ู
ูุชุจุฉ ู
ูููุงุช ุฌุงูุฒุฉ ููุงุฌูุฉ ุงูู
ุณุชุฎุฏู
.
3. ๐จ **SCSS**: ูุชุงุจุฉ CSS ุจุทุฑููุฉ ู
ูุธู
ุฉ ูู
ุชูุฏู
ุฉ.
4. ๐ **Axios**: ุฅุฏุงุฑุฉ ุทูุจุงุช HTTP ุจุณูููุฉ.
5. ๐ **FontAwesome**: ุฃููููุงุช ุฌุงูุฒุฉ ูุชุฌู
ูู ุงููุงุฌูุงุช.
6. ๐ **PWA**: ูุชุญููู ุงูุชุทุจููุงุช ุฅูู ุชุทุจููุงุช ููุจ ุชูุฏู
ูุฉ.
7. โจ **Prism**: ุชู
ููุฒ ุงูุดููุฑุงุช ุงูุจุฑู
ุฌูุฉ ูู ุงููุงุฌูุงุช.
8. ๐ก **Swiper**: ูุฅุถุงูุฉ ุณูุงูุฏุฑ ุฃููู ูุณูู ุงูุชุญูู
.
---
# โ๏ธ BackEnd
## ๐ ๏ธ **Language**
- ๐ **Django**: ุฅุทุงุฑ ุนู
ู ููู ูุณุฑูุน ูุจูุงุก ุชุทุจููุงุช ุงูููุจ.
## ๐ **Libraries**
1. ๐ **Django Rest Framework**: ูุฅูุดุงุก ูุงุฌูุงุช ุจุฑู
ุฌูุฉ API ุจุณูููุฉ.
2. ๐ **Django Rest Framework SimpleJWT** ๐ก๏ธ: ูุฅุฏุงุฑุฉ ุงูุชูุซูู ุจุงุณุชุฎุฏุงู
JSON Web Tokens.
3. ๐ **Django Cors Headers** ๐: ููุณู
ุงุญ ุจุงููุตูู ู
ู ู
ุตุงุฏุฑ ุฎุงุฑุฌูุฉ.
4. ๐ผ๏ธ **Pillow** ๐ท: ููุชุนุงู
ู ู
ุน ุงูุตูุฑ ูู
ุนุงูุฌุชูุง.
## ๐ฆ Django
- ๐ Activate Virtual Environment ๐
```cmd
account_virtual_environment\Scripts\activate
```
- Go To
```cmd
cd account_django
```
- Modifications To Models File
```cmd
python manage.py makemigrations
```
- Modifications To The Database
```cmd
python manage.py migrate
```
- Run Project
```cmd
python manage.py runserver
```
### ๐ฅ๏ธ Vue
- Go To
```cmd
cd account_vue
```
```cmd
npm run dev
```
```cmd
npm run build
```
### ๐ฅ๏ธ Vue Press
- Go To
```cmd
cd account_vuepress
```
```cmd
npm run docs:dev
```
___
###### ๐ Create File Gitignore
```
.gitignore
```
###### ๐๏ธ Write Inside File
```
node_modules/
```
###### ๐ Review changes and formulate change action
```cmd
git status
```
###### ๐ Add all new and changed files to the Staging Area.
```
git add *
```
###### ๐พ This command sends the file from the Staging Area to the Local Repo.
```cmd
git commit -m "Commit Explain Code"
```
###### ๐ This command sends files from (Local Repo) to (Remote Repo).
```cmd
git push origin main
```