gwift-book/main.tex

129 lines
2.6 KiB
TeX
Raw Normal View History

2022-03-23 09:05:33 +01:00
\documentclass[twoside=no,parskip=half,numbers=enddot,bibliography=totoc,index=totoc,listof=totoc]{scrbook}
2022-05-04 22:01:55 +02:00
\usepackage{amsmath}
2022-03-23 09:05:33 +01:00
\usepackage{makeidx}
\usepackage[utf8]{inputenc}
2022-03-23 09:05:33 +01:00
\usepackage[french]{babel}
\usepackage{csquotes}
\usepackage[acronym]{glossaries}
2022-03-23 09:05:33 +01:00
\usepackage{hyperref}
\usepackage{setspace}
2022-03-23 22:35:04 +01:00
\usepackage{listing}
2022-10-23 22:03:14 +02:00
\usepackage{minted}[tabsize=4]
2022-03-24 19:40:48 +01:00
\usepackage{graphics}
2022-04-13 20:00:10 +02:00
\usepackage{float}
2022-03-24 19:40:48 +01:00
\usepackage[export]{adjustbox}
2022-03-23 22:35:04 +01:00
\usepackage{gwiftemplate}
2022-03-28 21:27:00 +02:00
\renewcommand\listlistingname{Liste des morceaux de code}
2022-03-28 21:27:00 +02:00
2022-03-23 09:05:33 +01:00
\onehalfspacing
\makeindex
\title{Minor Swing with Django}
\author{Fred}
\date{Entre 2015 et 2032}
\publishers{Me, Myself and I Editions}
\setcounter{tocdepth}{1}
\begin{document}
\maketitle
\frontmatter
\include{chapters/licence.tex}
2022-03-23 22:35:04 +01:00
\include{chapters/introduction.tex}
2022-03-23 09:05:33 +01:00
\tableofcontents
\mainmatter
2022-03-23 22:35:04 +01:00
\include{parts/environment.tex}
\include{chapters/maintenability.tex}
\include{chapters/architecture.tex}
2022-04-16 20:53:08 +02:00
\include{chapters/tests.tex}
2022-04-22 19:39:38 +02:00
\include{chapters/tools.tex}
2022-04-24 19:00:11 +02:00
\include{chapters/working-in-isolation.tex}
2022-03-24 19:40:48 +01:00
\include{chapters/python.tex}
2022-04-20 20:09:48 +02:00
\include{chapters/new-project.tex}
2022-06-01 22:16:48 +02:00
\include{chapters/continuous-integration.tex}
2022-03-23 09:05:33 +01:00
2022-05-01 20:10:26 +02:00
\include{parts/deployment.tex}
\include{chapters/infrastructure.tex}
\include{chapters/debian.tex}
2022-06-01 22:16:48 +02:00
\include{chapters/docker-compose.tex}
2022-05-01 20:10:26 +02:00
\include{chapters/heroku.tex}
\include{chapters/kubernetes.tex}
\include{chapters/deployment-tools.tex}
\chapter{Conclusions}
\include{parts/principles.tex}
2022-03-23 09:05:33 +01:00
\include{chapters/models.tex}
\include{chapters/migrations.tex}
2022-04-25 20:50:14 +02:00
\include{chapters/administration.tex}
2022-05-13 11:26:09 +02:00
\include{chapters/views.tex}
2022-04-30 19:05:06 +02:00
\include{chapters/urls.tex}
\include{chapters/templates.tex}
2022-05-13 11:26:09 +02:00
\include{chapters/forms.tex}
2022-04-26 22:26:00 +02:00
\include{chapters/authentication.tex}
2022-04-30 19:05:06 +02:00
\include{chapters/context-processors.tex}
2022-05-04 22:01:55 +02:00
\include{chapters/security.tex}
2022-03-23 09:05:33 +01:00
\chapter{Conclusions}
2022-04-27 19:33:47 +02:00
\include{parts/soa.tex}
2022-03-23 09:05:33 +01:00
2022-04-27 19:33:47 +02:00
\include{chapters/api.tex}
2022-12-16 22:46:35 +01:00
\include{chapters/js-framework.tex}
2022-04-27 19:33:47 +02:00
\include{chapters/filters.tex}
2022-04-30 19:05:06 +02:00
\include{chapters/trees.tex}
2022-04-27 19:33:47 +02:00
\include{chapters/i18n.tex}
2022-05-11 15:43:09 +02:00
\include{chapters/deployment-processes.tex}
\include{chapters/gdpr.tex}
2022-03-23 09:05:33 +01:00
\chapter{Conclusions}
2022-04-27 19:33:47 +02:00
\include{parts/go-live.tex}
2022-03-23 09:05:33 +01:00
2022-04-27 19:33:47 +02:00
\include{chapters/gwift.tex}
2022-04-26 22:26:00 +02:00
\include{chapters/khana.tex}
2022-03-23 09:05:33 +01:00
\chapter{Conclusions}
2022-05-31 20:39:48 +02:00
\appendix
\part{Annexes}
2022-06-01 22:16:48 +02:00
\include{annexes/grafana.tex}
\include{annexes/sonar.tex}
2022-06-03 21:10:05 +02:00
\include{annexes/snippets.tex}
2022-05-31 20:39:48 +02:00
2022-05-31 21:57:21 +02:00
\chapter{Fly.io}
2022-03-23 09:05:33 +01:00
\backmatter
2022-03-23 22:35:04 +01:00
\part{Ressources}
2022-03-23 09:05:33 +01:00
\printindex
2022-03-23 22:35:04 +01:00
\bibliography{references}
\bibliographystyle{plainnat}
\include{glossary.tex}
2022-04-26 22:26:00 +02:00
\include{resources.tex}
\listoffigures
\listoftables
%\listoflistings
\clearpage
\addcontentsline{toc}{chapter}{\listlistingname}{\listoflistings}
2022-03-23 22:35:04 +01:00
\include{chapters/thanks.tex}
2022-03-23 09:05:33 +01:00
\end{document}