Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagecell
Path: blob/master/contrib/vm/compute_node/config.py
447 views
1
import config_default
2
3
4
# Global database running on Google Compute Engine with a static IP
5
db = "web"
6
db_config = {"uri": "http://130.211.113.153"}
7
8
requires_tos = False
9
10
pid_file = '/home/{server}/sagecell.pid'
11
12
config_default.provider_settings.update({
13
"max_kernels": 80,
14
"max_preforked": 10,
15
})
16
17
config_default.provider_info.update({
18
"username": "{worker}",
19
})
20
21