gwift-book/main.tex

112 lines
2.2 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}
\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}
\usepackage{minted}
2022-03-24 18:56:29 +01:00
\usepackage{ulem}
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
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
\listoffigures
\listoftables
2022-03-28 21:27:00 +02:00
%\listoflistings
2022-04-12 19:48:27 +02:00
\clearpage
2022-03-28 21:27:00 +02:00
\addcontentsline{toc}{chapter}{\listlistingname}{\listoflistings}
2022-03-23 09:05:33 +01:00
\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-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/deployments.tex}
\include{chapters/heroku.tex}
\include{chapters/kubernetes.tex}
\include{chapters/deployment-tools.tex}
\include{chapters/deployment-processes.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-04-30 19:05:06 +02:00
\include{chapters/urls.tex}
2022-04-25 20:50:14 +02:00
\include{chapters/forms.tex}
\include{chapters/templates.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-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}
\include{chapters/filters.tex}
2022-04-30 19:05:06 +02:00
\include{chapters/trees.tex}
\include{chapters/graphs.tex}
2022-04-27 19:33:47 +02:00
\include{chapters/i18n.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}
\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}
2022-03-23 22:35:04 +01:00
\include{chapters/thanks.tex}
2022-03-23 09:05:33 +01:00
\end{document}