├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── bug_report.md ├── .nojekyll ├── 00-Introduction └── README.md ├── 01-Docker └── README.md ├── 02-PostgreSQL ├── README.md └── imgs │ ├── Admin Users page.PNG │ ├── Admin_users.png │ ├── Admin_with_postgresadmin.png │ ├── Django admin login.PNG │ ├── Django error.PNG │ └── Django sqliteadmin.PNG ├── 03-BookstoreProject └── README.md ├── 04-PagesApp └── README.md ├── 05-UserRegistration ├── README.md └── images │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── 06-StaticAssets ├── README.md └── assets │ ├── 100.png │ ├── 101.png │ ├── 89.png │ ├── 91.png │ ├── 93.png │ ├── 96.png │ └── 98.png ├── 07-AdvancedUserRegistration ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png └── README.md ├── 08-Environment-Variables └── README.md ├── 09-Email ├── README.md └── images │ ├── Admin Sites - DjangoBookstore.com.png │ ├── Admin Sites.png │ ├── Confirm Email Page Updated.png │ ├── Confirm Email Page.png │ ├── Sign Up testuser4.png │ └── testuser 3 Sign Up.png ├── 10-Books-App ├── README.md └── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── 11-Reviews-App ├── README.md └── image │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── relationship.jpg │ └── template1.png ├── 12-File-Image-Uploads ├── README.md └── images │ ├── adminaddcover.png │ ├── adminwithcover.png │ ├── coveriamgeerror.png │ └── coverimage.png ├── 13-Permissions └── README.md ├── 14-Search ├── README.md ├── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png └── images5.png ├── 15-Performance ├── DebugToolbar.jpg ├── README.md └── queries.png ├── 16-Security ├── README.md └── images │ └── 1.jpg ├── 17-Deployment ├── LIARA.md ├── README.md └── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Conclusion └── README.md ├── LICENSE ├── README.md ├── _sidebar.md ├── cover.jpg ├── custom.css ├── custom.js └── index.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://mahak-charity.org/online-payment"] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /00-Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/00-Introduction/README.md -------------------------------------------------------------------------------- /01-Docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/01-Docker/README.md -------------------------------------------------------------------------------- /02-PostgreSQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/02-PostgreSQL/README.md -------------------------------------------------------------------------------- /02-PostgreSQL/imgs/Admin Users page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/02-PostgreSQL/imgs/Admin Users page.PNG -------------------------------------------------------------------------------- /02-PostgreSQL/imgs/Admin_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/02-PostgreSQL/imgs/Admin_users.png -------------------------------------------------------------------------------- /02-PostgreSQL/imgs/Admin_with_postgresadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/02-PostgreSQL/imgs/Admin_with_postgresadmin.png -------------------------------------------------------------------------------- /02-PostgreSQL/imgs/Django admin login.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/02-PostgreSQL/imgs/Django admin login.PNG -------------------------------------------------------------------------------- /02-PostgreSQL/imgs/Django error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/02-PostgreSQL/imgs/Django error.PNG -------------------------------------------------------------------------------- /02-PostgreSQL/imgs/Django sqliteadmin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/02-PostgreSQL/imgs/Django sqliteadmin.PNG -------------------------------------------------------------------------------- /03-BookstoreProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/03-BookstoreProject/README.md -------------------------------------------------------------------------------- /04-PagesApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/04-PagesApp/README.md -------------------------------------------------------------------------------- /05-UserRegistration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/README.md -------------------------------------------------------------------------------- /05-UserRegistration/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/1.png -------------------------------------------------------------------------------- /05-UserRegistration/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/10.png -------------------------------------------------------------------------------- /05-UserRegistration/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/11.png -------------------------------------------------------------------------------- /05-UserRegistration/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/2.png -------------------------------------------------------------------------------- /05-UserRegistration/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/3.png -------------------------------------------------------------------------------- /05-UserRegistration/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/4.png -------------------------------------------------------------------------------- /05-UserRegistration/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/5.png -------------------------------------------------------------------------------- /05-UserRegistration/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/6.png -------------------------------------------------------------------------------- /05-UserRegistration/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/7.png -------------------------------------------------------------------------------- /05-UserRegistration/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/8.png -------------------------------------------------------------------------------- /05-UserRegistration/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/05-UserRegistration/images/9.png -------------------------------------------------------------------------------- /06-StaticAssets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/06-StaticAssets/README.md -------------------------------------------------------------------------------- /06-StaticAssets/assets/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/06-StaticAssets/assets/100.png -------------------------------------------------------------------------------- /06-StaticAssets/assets/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/06-StaticAssets/assets/101.png -------------------------------------------------------------------------------- /06-StaticAssets/assets/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/06-StaticAssets/assets/89.png -------------------------------------------------------------------------------- /06-StaticAssets/assets/91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/06-StaticAssets/assets/91.png -------------------------------------------------------------------------------- /06-StaticAssets/assets/93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/06-StaticAssets/assets/93.png -------------------------------------------------------------------------------- /06-StaticAssets/assets/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/06-StaticAssets/assets/96.png -------------------------------------------------------------------------------- /06-StaticAssets/assets/98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/06-StaticAssets/assets/98.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/1.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/10.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/11.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/12.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/13.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/14.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/2.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/3.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/4.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/5.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/6.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/7.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/8.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/9.png -------------------------------------------------------------------------------- /07-AdvancedUserRegistration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/07-AdvancedUserRegistration/README.md -------------------------------------------------------------------------------- /08-Environment-Variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/08-Environment-Variables/README.md -------------------------------------------------------------------------------- /09-Email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/09-Email/README.md -------------------------------------------------------------------------------- /09-Email/images/Admin Sites - DjangoBookstore.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/09-Email/images/Admin Sites - DjangoBookstore.com.png -------------------------------------------------------------------------------- /09-Email/images/Admin Sites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/09-Email/images/Admin Sites.png -------------------------------------------------------------------------------- /09-Email/images/Confirm Email Page Updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/09-Email/images/Confirm Email Page Updated.png -------------------------------------------------------------------------------- /09-Email/images/Confirm Email Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/09-Email/images/Confirm Email Page.png -------------------------------------------------------------------------------- /09-Email/images/Sign Up testuser4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/09-Email/images/Sign Up testuser4.png -------------------------------------------------------------------------------- /09-Email/images/testuser 3 Sign Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/09-Email/images/testuser 3 Sign Up.png -------------------------------------------------------------------------------- /10-Books-App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/README.md -------------------------------------------------------------------------------- /10-Books-App/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/images/1.png -------------------------------------------------------------------------------- /10-Books-App/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/images/2.png -------------------------------------------------------------------------------- /10-Books-App/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/images/3.png -------------------------------------------------------------------------------- /10-Books-App/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/images/4.png -------------------------------------------------------------------------------- /10-Books-App/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/images/5.png -------------------------------------------------------------------------------- /10-Books-App/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/images/6.png -------------------------------------------------------------------------------- /10-Books-App/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/images/7.png -------------------------------------------------------------------------------- /10-Books-App/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/images/8.png -------------------------------------------------------------------------------- /10-Books-App/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/10-Books-App/images/9.png -------------------------------------------------------------------------------- /11-Reviews-App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/11-Reviews-App/README.md -------------------------------------------------------------------------------- /11-Reviews-App/image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/11-Reviews-App/image/1.png -------------------------------------------------------------------------------- /11-Reviews-App/image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/11-Reviews-App/image/2.png -------------------------------------------------------------------------------- /11-Reviews-App/image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/11-Reviews-App/image/3.png -------------------------------------------------------------------------------- /11-Reviews-App/image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/11-Reviews-App/image/4.png -------------------------------------------------------------------------------- /11-Reviews-App/image/relationship.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/11-Reviews-App/image/relationship.jpg -------------------------------------------------------------------------------- /11-Reviews-App/image/template1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/11-Reviews-App/image/template1.png -------------------------------------------------------------------------------- /12-File-Image-Uploads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/12-File-Image-Uploads/README.md -------------------------------------------------------------------------------- /12-File-Image-Uploads/images/adminaddcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/12-File-Image-Uploads/images/adminaddcover.png -------------------------------------------------------------------------------- /12-File-Image-Uploads/images/adminwithcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/12-File-Image-Uploads/images/adminwithcover.png -------------------------------------------------------------------------------- /12-File-Image-Uploads/images/coveriamgeerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/12-File-Image-Uploads/images/coveriamgeerror.png -------------------------------------------------------------------------------- /12-File-Image-Uploads/images/coverimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/12-File-Image-Uploads/images/coverimage.png -------------------------------------------------------------------------------- /13-Permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/13-Permissions/README.md -------------------------------------------------------------------------------- /14-Search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/14-Search/README.md -------------------------------------------------------------------------------- /14-Search/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/14-Search/images/1.png -------------------------------------------------------------------------------- /14-Search/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/14-Search/images/2.png -------------------------------------------------------------------------------- /14-Search/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/14-Search/images/3.png -------------------------------------------------------------------------------- /14-Search/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/14-Search/images/4.png -------------------------------------------------------------------------------- /14-Search/images5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/14-Search/images5.png -------------------------------------------------------------------------------- /15-Performance/DebugToolbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/15-Performance/DebugToolbar.jpg -------------------------------------------------------------------------------- /15-Performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/15-Performance/README.md -------------------------------------------------------------------------------- /15-Performance/queries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/15-Performance/queries.png -------------------------------------------------------------------------------- /16-Security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/16-Security/README.md -------------------------------------------------------------------------------- /16-Security/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/16-Security/images/1.jpg -------------------------------------------------------------------------------- /17-Deployment/LIARA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/17-Deployment/LIARA.md -------------------------------------------------------------------------------- /17-Deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/17-Deployment/README.md -------------------------------------------------------------------------------- /17-Deployment/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/17-Deployment/images/1.png -------------------------------------------------------------------------------- /17-Deployment/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/17-Deployment/images/2.png -------------------------------------------------------------------------------- /17-Deployment/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/17-Deployment/images/3.png -------------------------------------------------------------------------------- /17-Deployment/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/17-Deployment/images/4.png -------------------------------------------------------------------------------- /17-Deployment/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/17-Deployment/images/5.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Conclusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/Conclusion/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/README.md -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/_sidebar.md -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/cover.jpg -------------------------------------------------------------------------------- /custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/custom.css -------------------------------------------------------------------------------- /custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/custom.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftg-iran/dfp-persian/HEAD/index.html --------------------------------------------------------------------------------