gwift-book/main.tex

140 lines
2.1 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[french]{babel}
\usepackage{csquotes}
\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-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-03-23 09:05:33 +01:00
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-03-23 09:05:33 +01:00
2022-04-20 20:09:48 +02:00
\include{chapters/new-project.tex}
2022-03-23 09:05:33 +01:00
\part{Principes fondamentaux de Django}
\chapter{Modélisation}
\chapter{Migrations}
\chapter{Shell}
\chapter{Administration}
\chapter{Forms}
\chapter{Processus d'authentification}
\chapter{Context Processors}
\chapter{Conclusions}
\part{Méthodes de déploiement}
\chapter{Infrastructure et composants}
\chapter{Code source}
\chapter{Outils de supervision et de mise à disposition}
\chapter{Journaux}
\chapter{Méthodes}
\chapter{On-premise: Debian}
\chapter{PaaS: Heroku}
\chapter{Outils complémentaires}
\chapter{Ressources}
\chapter{Conclusions}
\part{Services Oriented Applications}
\chapter{Application Programming Interfaces}
\chapter{A/B Testing}
\chapter{Modèles et relations}
\chapter{Filtres et recherches}
\chapter{URLs et espaces de noms}
\chapter{i18n / l20n}
\chapter{Conclusions}
\part{Go Live!}
\chapter{Gwift}
\chapter{Khana}
\chapter{Refactoring}
\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{chapters/thanks.tex}
2022-03-23 09:05:33 +01:00
\end{document}