├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Onboarding ├── Junior │ ├── Backend Developer.md │ ├── DevOps Developer.md │ ├── Frontend Developer.md │ └── Mobile Developer.md ├── Regular │ ├── Backend Developer.md │ ├── DevOps Developer.md │ ├── Frontend Developer.md │ └── Mobile Developer.md └── Senior │ ├── Backend Developer.md │ ├── DevOps Developer.md │ ├── Frontend Developer.md │ └── Mobile Developer.md ├── README.md ├── Technical Guide ├── Junior to Regular │ ├── Backend Developer.md │ ├── DevOps Developer.md │ ├── Frontend Developer.md │ └── Mobile Developer.md └── Regular to Senior │ ├── Backend Developer.md │ ├── DevOps Developer.md │ ├── Frontend Developer.md │ └── Mobile Developer.md ├── Technical Stack ├── Backend Developer.md ├── Backend Developer │ ├── 3rd Party.md │ ├── Classes Enhancement.md │ ├── Code Analysis.md │ ├── Company best practices.md │ ├── Data Formats.md │ ├── Databases.md │ ├── Date & Time.md │ ├── Development Tools.md │ ├── Documenting.md │ ├── Javascript.md │ ├── Python.md │ └── Testing.md ├── DevOps Developer.md ├── DevOps Developer │ ├── Application Servers.md │ ├── CDN.md │ ├── Company best practices.md │ ├── Containerization Services.md │ ├── Continuous Integration.md │ ├── DNS.md │ ├── Databases.md │ ├── Docker Registry.md │ ├── Generic AWS Services.md │ ├── IaC.md │ ├── Message Brokers.md │ ├── Monitoring.md │ ├── Storage.md │ ├── Task Queues.md │ └── VPS Services.md ├── Frontend Developer.md ├── Frontend Developer │ ├── Animations.md │ ├── Application state management.md │ ├── Apptension React Boilerplate.md │ ├── Audio and Video.md │ ├── Backend & DevOps.md │ ├── Browsers.md │ ├── Common Application Modules.md │ ├── Company practices.md │ ├── Date & Time.md │ ├── Development Tools.md │ ├── Fonts.md │ ├── Forms.md │ ├── Functional programming.md │ ├── HTTP.md │ ├── Internationalization.md │ ├── Languages.md │ ├── Misc.md │ ├── Monitoring.md │ ├── Performance.md │ ├── React.md │ ├── Routing.md │ ├── SEO.md │ ├── SSR & Prerendering.md │ ├── Styling.md │ ├── Templating engines.md │ ├── Testing.md │ ├── Tools.md │ └── Visualizations.md ├── Mobile Developer.md └── Mobile Developer │ ├── Animations.md │ ├── Application state management.md │ ├── CI │ └── CD.md │ ├── Common Application Modules.md │ ├── Company best practices.md │ ├── Components.md │ ├── Crash reporting │ └── Monitoring.md │ ├── Date & Time.md │ ├── Development tools.md │ ├── HTTP.md │ ├── Internationalization.md │ ├── Navigation.md │ ├── Performance.md │ ├── React-native.md │ ├── React.md │ ├── Services.md │ ├── Testing.md │ ├── Tools.md │ └── Versioning.md └── images ├── course-banner.png └── dev-handbook-schema.png /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/LICENSE -------------------------------------------------------------------------------- /Onboarding/Junior/Backend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Junior/Backend Developer.md -------------------------------------------------------------------------------- /Onboarding/Junior/DevOps Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Junior/DevOps Developer.md -------------------------------------------------------------------------------- /Onboarding/Junior/Frontend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Junior/Frontend Developer.md -------------------------------------------------------------------------------- /Onboarding/Junior/Mobile Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Junior/Mobile Developer.md -------------------------------------------------------------------------------- /Onboarding/Regular/Backend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Regular/Backend Developer.md -------------------------------------------------------------------------------- /Onboarding/Regular/DevOps Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Regular/DevOps Developer.md -------------------------------------------------------------------------------- /Onboarding/Regular/Frontend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Regular/Frontend Developer.md -------------------------------------------------------------------------------- /Onboarding/Regular/Mobile Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Regular/Mobile Developer.md -------------------------------------------------------------------------------- /Onboarding/Senior/Backend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Senior/Backend Developer.md -------------------------------------------------------------------------------- /Onboarding/Senior/DevOps Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Senior/DevOps Developer.md -------------------------------------------------------------------------------- /Onboarding/Senior/Frontend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Senior/Frontend Developer.md -------------------------------------------------------------------------------- /Onboarding/Senior/Mobile Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Onboarding/Senior/Mobile Developer.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/README.md -------------------------------------------------------------------------------- /Technical Guide/Junior to Regular/Backend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Guide/Junior to Regular/Backend Developer.md -------------------------------------------------------------------------------- /Technical Guide/Junior to Regular/DevOps Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Guide/Junior to Regular/DevOps Developer.md -------------------------------------------------------------------------------- /Technical Guide/Junior to Regular/Frontend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Guide/Junior to Regular/Frontend Developer.md -------------------------------------------------------------------------------- /Technical Guide/Junior to Regular/Mobile Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Guide/Junior to Regular/Mobile Developer.md -------------------------------------------------------------------------------- /Technical Guide/Regular to Senior/Backend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Guide/Regular to Senior/Backend Developer.md -------------------------------------------------------------------------------- /Technical Guide/Regular to Senior/DevOps Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Guide/Regular to Senior/DevOps Developer.md -------------------------------------------------------------------------------- /Technical Guide/Regular to Senior/Frontend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Guide/Regular to Senior/Frontend Developer.md -------------------------------------------------------------------------------- /Technical Guide/Regular to Senior/Mobile Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Guide/Regular to Senior/Mobile Developer.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/3rd Party.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/3rd Party.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Classes Enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Classes Enhancement.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Code Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Code Analysis.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Company best practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Company best practices.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Data Formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Data Formats.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Databases.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Date & Time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Date & Time.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Development Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Development Tools.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Documenting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Documenting.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Javascript.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Python.md -------------------------------------------------------------------------------- /Technical Stack/Backend Developer/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Backend Developer/Testing.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Application Servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Application Servers.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/CDN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/CDN.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Company best practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Company best practices.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Containerization Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Containerization Services.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Continuous Integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Continuous Integration.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/DNS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/DNS.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Databases.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Docker Registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Docker Registry.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Generic AWS Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Generic AWS Services.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/IaC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/IaC.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Message Brokers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Message Brokers.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Monitoring.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Storage.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/Task Queues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/Task Queues.md -------------------------------------------------------------------------------- /Technical Stack/DevOps Developer/VPS Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/DevOps Developer/VPS Services.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Animations.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Application state management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Application state management.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Apptension React Boilerplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Apptension React Boilerplate.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Audio and Video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Audio and Video.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Backend & DevOps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Backend & DevOps.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Browsers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Browsers.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Common Application Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Common Application Modules.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Company practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Company practices.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Date & Time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Date & Time.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Development Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Development Tools.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Fonts.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Forms.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Functional programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Functional programming.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/HTTP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/HTTP.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Internationalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Internationalization.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Languages.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Misc.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Monitoring.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Performance.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/React.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/React.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Routing.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/SEO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/SEO.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/SSR & Prerendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/SSR & Prerendering.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Styling.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Templating engines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Templating engines.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Testing.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Tools.md -------------------------------------------------------------------------------- /Technical Stack/Frontend Developer/Visualizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Frontend Developer/Visualizations.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Animations.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Application state management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Application state management.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/CI/CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/CI/CD.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Common Application Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Common Application Modules.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Company best practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Company best practices.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Components.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Crash reporting / Monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Crash reporting / Monitoring.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Date & Time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Date & Time.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Development tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Development tools.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/HTTP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/HTTP.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Internationalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Internationalization.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Navigation.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Performance.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/React-native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/React-native.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/React.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/React.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Services.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Testing.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Tools.md -------------------------------------------------------------------------------- /Technical Stack/Mobile Developer/Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/Technical Stack/Mobile Developer/Versioning.md -------------------------------------------------------------------------------- /images/course-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/images/course-banner.png -------------------------------------------------------------------------------- /images/dev-handbook-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apptension/developer-handbook/HEAD/images/dev-handbook-schema.png --------------------------------------------------------------------------------