-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpredictomatic.toml
More file actions
44 lines (38 loc) · 1.26 KB
/
predictomatic.toml
File metadata and controls
44 lines (38 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[database]
path = "predictomatic.sqlite3"
[app]
admin_email = "admin@example.com"
email_suffix = "@example.com"
opening_balance_micros = 100_000_000
[server]
listen = "127.0.0.1:5639"
prefix = "/predict"
# For local development we can start additional servers where different users
# are logged in by default. These are only accepted when compiling for
# development, not when compiling in release mode.
# [[demo_server]]
# listen = "127.0.0.1:5640"
# prefix = ""
# unsafe_user_email = "admin@example.com"
# [[demo_server]]
# listen = "127.0.0.1:5641"
# prefix = ""
# unsafe_user_email = "henk@example.com"
# [[demo_server]]
# listen = "127.0.0.1:5642"
# prefix = ""
# unsafe_user_email = "piet@example.com"
# The configuration file can contain markets to seed the database. These are
# primarily intended to make testing in local development easier.
[[market]]
slug = "predictomatic-demoable"
title = "Will the Predictomatic be demoable before the end of the hackathon?"
description = """
Resolves ‘Yes’ if the at the the hackathon presentations, the Predictomatic
is in a state where:
1) At least two users at the company are able to open it
2) They are able to make a prediction on at least one market.
"""
kind = "binary"
outcomes = ["Yes", "No"]
fund_micros = 150_000_000