Skip to content

Commit 0c4831f

Browse files
committed
Chapter 8: Production Item 54: Consider module-scoped code to configure deployment environments
1 parent 385f4df commit 0c4831f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Chapter 8: Production
2+
3+
4+
# Putting a Python program to use requires moving it from a development
5+
# environment to a production environment. Supporting disparate configurations
6+
# like this can be a challenge. Making programs that are dependable in
7+
# multiple situations is just as important as making programs with correct
8+
# functionality.
9+
10+
# The goal is to productionize your Python programs and make them bulletproof
11+
# while they're in use. Python has built-in modules that aid in hardening your
12+
# programs. It provides facilities for debugging, optimizing, and testing to
13+
# maximize the quality and performance of your programs at runtime.
14+
15+
16+
# Item 54: Consider module-scoped code to configure deployment environments
17+
18+
#

0 commit comments

Comments
 (0)