Skip to content

Commit 30ce97f

Browse files
committed
added missing .env.example
1 parent 0a79dd7 commit 30ce97f

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# -------------------------------------
2+
# MindsDB Connection Details
3+
# -------------------------------------
4+
# Local development connection (default)
5+
MINDSDB_PROTOCOL=http
6+
MINDSDB_HOST=127.0.0.1
7+
MINDSDB_PORT=47334
8+
MINDSDB_USER=
9+
MINDSDB_PASSWORD=
10+
11+
# Example for a remote, authenticated connection
12+
# MINDSDB_PROTOCOL=https
13+
# MINDSDB_HOST=cloud.mindsdb.com
14+
# MINDSDB_PORT=443
15+
# MINDSDB_USER=your_email@example.com
16+
# MINDSDB_PASSWORD=your_mindsdb_password
17+
18+
# -------------------------------------
19+
# Data Source Credentials
20+
# -------------------------------------
21+
22+
# PostgreSQL
23+
PG_SOURCE_HOST=samples.mindsdb.com
24+
PG_SOURCE_PORT=5432
25+
PG_SOURCE_DATABASE=demo
26+
PG_SOURCE_USER=demo_user
27+
PG_SOURCE_PASSWORD=demo_password
28+
PG_SOURCE_SCHEMA=sample_data
29+
30+
# Databricks
31+
DATABRICKS_HOST=
32+
DATABRICKS_WAREHOUSE_ID=
33+
DATABRICKS_TOKEN=
34+
DATABRICKS_CATALOG=samples
35+
DATABRICKS_SCHEMA=tpch
36+
37+
# Snowflake
38+
SNOWFLAKE_HOST=
39+
SNOWFLAKE_ACCOUNT=
40+
SNOWFLAKE_USER=
41+
SNOWFLAKE_PASSWORD=
42+
SNOWFLAKE_DATABASE=SNOWFLAKE_

0 commit comments

Comments
 (0)