├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ └── task.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── commit-generation.png ├── favicon.svg ├── gdg-docs-og.png ├── gdg-docs.png ├── gdg-logo.svg ├── generateed-commit.png ├── manifest.json └── robots.txt ├── src ├── assets │ └── gdg-logo.svg ├── content │ ├── config.ts │ └── docs │ │ ├── code-guidelines │ │ ├── formatting.mdx │ │ ├── general.mdx │ │ └── linting.mdx │ │ ├── common-techniques │ │ ├── api-design-principles.mdx │ │ └── deployment.mdx │ │ ├── express │ │ ├── authentication-security.mdx │ │ ├── databases.mdx │ │ ├── error-handling.mdx │ │ ├── file-uploads.mdx │ │ ├── middleware.mdx │ │ ├── performance-optimization.mdx │ │ └── project-structure.mdx │ │ ├── flutter │ │ ├── api-integration-data-handling.mdx │ │ ├── common-issues-debugging.mdx │ │ ├── local-storage-databases.mdx │ │ ├── navigation-routing.mdx │ │ ├── project-structure.mdx │ │ └── state-management.mdx │ │ ├── github │ │ ├── commits.mdx │ │ ├── contribution-flow.mdx │ │ └── issues-prs.mdx │ │ ├── index.mdx │ │ ├── overview │ │ └── what-is-gdg-docs.md │ │ ├── react │ │ ├── api-integration.mdx │ │ ├── authentication-security.mdx │ │ ├── forms-validation.mdx │ │ ├── nextjs.mdx │ │ ├── performance.mdx │ │ ├── project-structure.mdx │ │ ├── routing.mdx │ │ ├── state-management.mdx │ │ └── ui-styling.mdx │ │ └── typescript │ │ ├── express.mdx │ │ ├── general.mdx │ │ └── react.mdx ├── env.d.ts └── tailwind.css ├── tailwind.config.mjs └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/.github/ISSUE_TEMPLATE/task.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/package.json -------------------------------------------------------------------------------- /public/commit-generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/public/commit-generation.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/gdg-docs-og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/public/gdg-docs-og.png -------------------------------------------------------------------------------- /public/gdg-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/public/gdg-docs.png -------------------------------------------------------------------------------- /public/gdg-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/public/gdg-logo.svg -------------------------------------------------------------------------------- /public/generateed-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/public/generateed-commit.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/assets/gdg-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/assets/gdg-logo.svg -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/content/docs/code-guidelines/formatting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/code-guidelines/formatting.mdx -------------------------------------------------------------------------------- /src/content/docs/code-guidelines/general.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/code-guidelines/general.mdx -------------------------------------------------------------------------------- /src/content/docs/code-guidelines/linting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/code-guidelines/linting.mdx -------------------------------------------------------------------------------- /src/content/docs/common-techniques/api-design-principles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/common-techniques/api-design-principles.mdx -------------------------------------------------------------------------------- /src/content/docs/common-techniques/deployment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/common-techniques/deployment.mdx -------------------------------------------------------------------------------- /src/content/docs/express/authentication-security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/express/authentication-security.mdx -------------------------------------------------------------------------------- /src/content/docs/express/databases.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/express/databases.mdx -------------------------------------------------------------------------------- /src/content/docs/express/error-handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/express/error-handling.mdx -------------------------------------------------------------------------------- /src/content/docs/express/file-uploads.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/express/file-uploads.mdx -------------------------------------------------------------------------------- /src/content/docs/express/middleware.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/express/middleware.mdx -------------------------------------------------------------------------------- /src/content/docs/express/performance-optimization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/express/performance-optimization.mdx -------------------------------------------------------------------------------- /src/content/docs/express/project-structure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/express/project-structure.mdx -------------------------------------------------------------------------------- /src/content/docs/flutter/api-integration-data-handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/flutter/api-integration-data-handling.mdx -------------------------------------------------------------------------------- /src/content/docs/flutter/common-issues-debugging.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/flutter/common-issues-debugging.mdx -------------------------------------------------------------------------------- /src/content/docs/flutter/local-storage-databases.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/flutter/local-storage-databases.mdx -------------------------------------------------------------------------------- /src/content/docs/flutter/navigation-routing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/flutter/navigation-routing.mdx -------------------------------------------------------------------------------- /src/content/docs/flutter/project-structure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/flutter/project-structure.mdx -------------------------------------------------------------------------------- /src/content/docs/flutter/state-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/flutter/state-management.mdx -------------------------------------------------------------------------------- /src/content/docs/github/commits.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/github/commits.mdx -------------------------------------------------------------------------------- /src/content/docs/github/contribution-flow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/github/contribution-flow.mdx -------------------------------------------------------------------------------- /src/content/docs/github/issues-prs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/github/issues-prs.mdx -------------------------------------------------------------------------------- /src/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/index.mdx -------------------------------------------------------------------------------- /src/content/docs/overview/what-is-gdg-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/overview/what-is-gdg-docs.md -------------------------------------------------------------------------------- /src/content/docs/react/api-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/react/api-integration.mdx -------------------------------------------------------------------------------- /src/content/docs/react/authentication-security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/react/authentication-security.mdx -------------------------------------------------------------------------------- /src/content/docs/react/forms-validation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/react/forms-validation.mdx -------------------------------------------------------------------------------- /src/content/docs/react/nextjs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/react/nextjs.mdx -------------------------------------------------------------------------------- /src/content/docs/react/performance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/react/performance.mdx -------------------------------------------------------------------------------- /src/content/docs/react/project-structure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/react/project-structure.mdx -------------------------------------------------------------------------------- /src/content/docs/react/routing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/react/routing.mdx -------------------------------------------------------------------------------- /src/content/docs/react/state-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/react/state-management.mdx -------------------------------------------------------------------------------- /src/content/docs/react/ui-styling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/react/ui-styling.mdx -------------------------------------------------------------------------------- /src/content/docs/typescript/express.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/typescript/express.mdx -------------------------------------------------------------------------------- /src/content/docs/typescript/general.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/typescript/general.mdx -------------------------------------------------------------------------------- /src/content/docs/typescript/react.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/content/docs/typescript/react.mdx -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/src/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-docs/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict" 3 | } 4 | --------------------------------------------------------------------------------