Spaces:
Running
on
Zero
Running
on
Zero
fda
Browse files- command/postgres.py +1 -1
- command/postgresz.py +1 -1
- controllers/ai/.gpteng/memory/logs/all_output.txt +2 -2
- controllers/ai/.gpteng/memory/logs/gen_entrypoint_chat.txt +1 -1
- controllers/ai/mysite/db/connection.py +1 -1
- controllers/gpt_enginner20240629102944 +1 -0
- controllers/gra_04_database/.gpteng/memory/logs/all_output.txt +1 -1
- controllers/gra_04_database/.gpteng/memory/logs/gen_entrypoint_chat.txt +1 -1
- controllers/gra_04_database/rides.py +1 -1
- models/ride.py +1 -1
- mysite/libs/github.py +1 -1
- polls/controllers/database/.gpteng/memory/logs/all_output.txt +1 -1
- polls/controllers/database/.gpteng/memory/logs/gen_entrypoint_chat.txt +1 -1
- polls/controllers/database/PostGres.py +1 -1
- polls/databases/insert_line.py +1 -1
- polls/models/database.py +1 -1
- routers/gra_04_database/.gpteng/memory/logs/all_output.txt +1 -1
- routers/gra_04_database/.gpteng/memory/logs/gen_entrypoint_chat.txt +1 -1
- routers/gra_04_database/rides.py +1 -1
- views/gra_04_database/.gpteng/memory/logs/all_output.txt +1 -1
- views/gra_04_database/.gpteng/memory/logs/gen_entrypoint_chat.txt +1 -1
- views/gra_04_database/rides.py +1 -1
command/postgres.py
CHANGED
@@ -26,7 +26,7 @@ class Ride:
|
|
26 |
def connect_to_db():
|
27 |
conn = psycopg2.connect(
|
28 |
dbname="neondb",
|
29 |
-
user="
|
30 |
password=os.getenv("postgre_pass"),
|
31 |
host=os.getenv("postgre_host"),
|
32 |
port=5432,
|
|
|
26 |
def connect_to_db():
|
27 |
conn = psycopg2.connect(
|
28 |
dbname="neondb",
|
29 |
+
user=os.getenv("postgre_user"),
|
30 |
password=os.getenv("postgre_pass"),
|
31 |
host=os.getenv("postgre_host"),
|
32 |
port=5432,
|
command/postgresz.py
CHANGED
@@ -3,7 +3,7 @@ import os
|
|
3 |
# PostgreSQLの設定
|
4 |
conn_params = {
|
5 |
"dbname": "neondb",
|
6 |
-
"user": "
|
7 |
"password": os.getenv("postgre_pass"),
|
8 |
"host": os.getenv("postgre_host"),
|
9 |
"port": 5432,
|
|
|
3 |
# PostgreSQLの設定
|
4 |
conn_params = {
|
5 |
"dbname": "neondb",
|
6 |
+
"user": os.getenv("postgre_user"),
|
7 |
"password": os.getenv("postgre_pass"),
|
8 |
"host": os.getenv("postgre_host"),
|
9 |
"port": 5432,
|
controllers/ai/.gpteng/memory/logs/all_output.txt
CHANGED
@@ -1741,7 +1741,7 @@ class Ride:
|
|
1741 |
def connect_to_db():
|
1742 |
conn = psycopg2.connect(
|
1743 |
dbname="neondb",
|
1744 |
-
user="
|
1745 |
password=os.getenv("postgre_pass"),
|
1746 |
host=os.getenv("postgre_host"),
|
1747 |
port=5432,
|
@@ -1834,7 +1834,7 @@ import psycopg2
|
|
1834 |
def connect_to_db():
|
1835 |
conn = psycopg2.connect(
|
1836 |
dbname="neondb",
|
1837 |
-
user="
|
1838 |
password=os.getenv("postgre_pass"),
|
1839 |
host=os.getenv("postgre_host"),
|
1840 |
port=5432,
|
|
|
1741 |
def connect_to_db():
|
1742 |
conn = psycopg2.connect(
|
1743 |
dbname="neondb",
|
1744 |
+
user=os.getenv("postgre_user"),
|
1745 |
password=os.getenv("postgre_pass"),
|
1746 |
host=os.getenv("postgre_host"),
|
1747 |
port=5432,
|
|
|
1834 |
def connect_to_db():
|
1835 |
conn = psycopg2.connect(
|
1836 |
dbname="neondb",
|
1837 |
+
user=os.getenv("postgre_user"),
|
1838 |
password=os.getenv("postgre_pass"),
|
1839 |
host=os.getenv("postgre_host"),
|
1840 |
port=5432,
|
controllers/ai/.gpteng/memory/logs/gen_entrypoint_chat.txt
CHANGED
@@ -1292,7 +1292,7 @@ File: mysite/db/connection.py
|
|
1292 |
3 def connect_to_db():
|
1293 |
4 conn = psycopg2.connect(
|
1294 |
5 dbname="neondb",
|
1295 |
-
6 user="
|
1296 |
7 password=os.getenv("postgre_pass"),
|
1297 |
8 host=os.getenv("postgre_host"),
|
1298 |
9 port=5432,
|
|
|
1292 |
3 def connect_to_db():
|
1293 |
4 conn = psycopg2.connect(
|
1294 |
5 dbname="neondb",
|
1295 |
+
6 user=os.getenv("postgre_user"),
|
1296 |
7 password=os.getenv("postgre_pass"),
|
1297 |
8 host=os.getenv("postgre_host"),
|
1298 |
9 port=5432,
|
controllers/ai/mysite/db/connection.py
CHANGED
@@ -3,7 +3,7 @@ import psycopg2
|
|
3 |
def connect_to_db():
|
4 |
conn = psycopg2.connect(
|
5 |
dbname="neondb",
|
6 |
-
user="
|
7 |
password=os.getenv("postgre_pass"),
|
8 |
host=os.getenv("postgre_host"),
|
9 |
port=5432,
|
|
|
3 |
def connect_to_db():
|
4 |
conn = psycopg2.connect(
|
5 |
dbname="neondb",
|
6 |
+
user=os.getenv("postgre_user"),
|
7 |
password=os.getenv("postgre_pass"),
|
8 |
host=os.getenv("postgre_host"),
|
9 |
port=5432,
|
controllers/gpt_enginner20240629102944
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 88cd70fd2beb1090e26481c03c0085ec40561087
|
controllers/gra_04_database/.gpteng/memory/logs/all_output.txt
CHANGED
@@ -106,7 +106,7 @@ import psycopg2
|
|
106 |
def connect_to_db():
|
107 |
conn = psycopg2.connect(
|
108 |
dbname="neondb",
|
109 |
-
user="
|
110 |
password=os.getenv("postgre_pass"),
|
111 |
host=os.getenv("postgre_host"),
|
112 |
port=5432,
|
|
|
106 |
def connect_to_db():
|
107 |
conn = psycopg2.connect(
|
108 |
dbname="neondb",
|
109 |
+
user=os.getenv("postgre_user"),
|
110 |
password=os.getenv("postgre_pass"),
|
111 |
host=os.getenv("postgre_host"),
|
112 |
port=5432,
|
controllers/gra_04_database/.gpteng/memory/logs/gen_entrypoint_chat.txt
CHANGED
@@ -45,7 +45,7 @@ File: database.py
|
|
45 |
3 def connect_to_db():
|
46 |
4 conn = psycopg2.connect(
|
47 |
5 dbname="neondb",
|
48 |
-
6 user="
|
49 |
7 password=os.getenv("postgre_pass"),
|
50 |
8 host=os.getenv("postgre_host"),
|
51 |
9 port=5432,
|
|
|
45 |
3 def connect_to_db():
|
46 |
4 conn = psycopg2.connect(
|
47 |
5 dbname="neondb",
|
48 |
+
6 user=os.getenv("postgre_user"),
|
49 |
7 password=os.getenv("postgre_pass"),
|
50 |
8 host=os.getenv("postgre_host"),
|
51 |
9 port=5432,
|
controllers/gra_04_database/rides.py
CHANGED
@@ -19,7 +19,7 @@ class Ride:
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
-
user="
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
+
user=os.getenv("postgre_user"),
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|
models/ride.py
CHANGED
@@ -25,7 +25,7 @@ class Ride:
|
|
25 |
def connect_to_db():
|
26 |
conn = psycopg2.connect(
|
27 |
dbname="neondb",
|
28 |
-
user="
|
29 |
password=os.getenv("postgre_pass"),
|
30 |
host=os.getenv("postgre_host"),
|
31 |
port=5432,
|
|
|
25 |
def connect_to_db():
|
26 |
conn = psycopg2.connect(
|
27 |
dbname="neondb",
|
28 |
+
user=os.getenv("postgre_user"),
|
29 |
password=os.getenv("postgre_pass"),
|
30 |
host=os.getenv("postgre_host"),
|
31 |
port=5432,
|
mysite/libs/github.py
CHANGED
@@ -7,7 +7,7 @@ import shutil
|
|
7 |
|
8 |
def github(token, folder):
|
9 |
# GitHubユーザー名とトークンを環境変数として定義
|
10 |
-
GITHUB_USERNAME = "
|
11 |
GITHUB_TOKEN = token
|
12 |
|
13 |
# ランダムな文字列を生成する関数
|
|
|
7 |
|
8 |
def github(token, folder):
|
9 |
# GitHubユーザー名とトークンを環境変数として定義
|
10 |
+
GITHUB_USERNAME = os.getenv("postgre_user")
|
11 |
GITHUB_TOKEN = token
|
12 |
|
13 |
# ランダムな文字列を生成する関数
|
polls/controllers/database/.gpteng/memory/logs/all_output.txt
CHANGED
@@ -106,7 +106,7 @@ import psycopg2
|
|
106 |
def connect_to_db():
|
107 |
conn = psycopg2.connect(
|
108 |
dbname="neondb",
|
109 |
-
user="
|
110 |
password=os.getenv("postgre_pass"),
|
111 |
host=os.getenv("postgre_host"),
|
112 |
port=5432,
|
|
|
106 |
def connect_to_db():
|
107 |
conn = psycopg2.connect(
|
108 |
dbname="neondb",
|
109 |
+
user=os.getenv("postgre_user"),
|
110 |
password=os.getenv("postgre_pass"),
|
111 |
host=os.getenv("postgre_host"),
|
112 |
port=5432,
|
polls/controllers/database/.gpteng/memory/logs/gen_entrypoint_chat.txt
CHANGED
@@ -45,7 +45,7 @@ File: database.py
|
|
45 |
3 def connect_to_db():
|
46 |
4 conn = psycopg2.connect(
|
47 |
5 dbname="neondb",
|
48 |
-
6 user="
|
49 |
7 password=os.getenv("postgre_pass"),
|
50 |
8 host=os.getenv("postgre_host"),
|
51 |
9 port=5432,
|
|
|
45 |
3 def connect_to_db():
|
46 |
4 conn = psycopg2.connect(
|
47 |
5 dbname="neondb",
|
48 |
+
6 user=os.getenv("postgre_user"),
|
49 |
7 password=os.getenv("postgre_pass"),
|
50 |
8 host=os.getenv("postgre_host"),
|
51 |
9 port=5432,
|
polls/controllers/database/PostGres.py
CHANGED
@@ -19,7 +19,7 @@ class Ride:
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
-
user="
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
+
user=os.getenv("postgre_user"),
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|
polls/databases/insert_line.py
CHANGED
@@ -33,7 +33,7 @@ def mask_specific_columns(df, columns):
|
|
33 |
def connect_to_db():
|
34 |
conn = psycopg2.connect(
|
35 |
dbname="neondb",
|
36 |
-
user="
|
37 |
password=os.getenv("postgre_pass"),
|
38 |
host=os.getenv("postgre_host"),
|
39 |
port=5432,
|
|
|
33 |
def connect_to_db():
|
34 |
conn = psycopg2.connect(
|
35 |
dbname="neondb",
|
36 |
+
user=os.getenv("postgre_user"),
|
37 |
password=os.getenv("postgre_pass"),
|
38 |
host=os.getenv("postgre_host"),
|
39 |
port=5432,
|
polls/models/database.py
CHANGED
@@ -19,7 +19,7 @@ class Ride:
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
-
user="
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
+
user=os.getenv("postgre_user"),
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|
routers/gra_04_database/.gpteng/memory/logs/all_output.txt
CHANGED
@@ -106,7 +106,7 @@ import psycopg2
|
|
106 |
def connect_to_db():
|
107 |
conn = psycopg2.connect(
|
108 |
dbname="neondb",
|
109 |
-
user="
|
110 |
password=os.getenv("postgre_pass"),
|
111 |
host=os.getenv("postgre_host"),
|
112 |
port=5432,
|
|
|
106 |
def connect_to_db():
|
107 |
conn = psycopg2.connect(
|
108 |
dbname="neondb",
|
109 |
+
user=os.getenv("postgre_user"),
|
110 |
password=os.getenv("postgre_pass"),
|
111 |
host=os.getenv("postgre_host"),
|
112 |
port=5432,
|
routers/gra_04_database/.gpteng/memory/logs/gen_entrypoint_chat.txt
CHANGED
@@ -45,7 +45,7 @@ File: database.py
|
|
45 |
3 def connect_to_db():
|
46 |
4 conn = psycopg2.connect(
|
47 |
5 dbname="neondb",
|
48 |
-
6 user="
|
49 |
7 password=os.getenv("postgre_pass"),
|
50 |
8 host=os.getenv("postgre_host"),
|
51 |
9 port=5432,
|
|
|
45 |
3 def connect_to_db():
|
46 |
4 conn = psycopg2.connect(
|
47 |
5 dbname="neondb",
|
48 |
+
6 user=os.getenv("postgre_user"),
|
49 |
7 password=os.getenv("postgre_pass"),
|
50 |
8 host=os.getenv("postgre_host"),
|
51 |
9 port=5432,
|
routers/gra_04_database/rides.py
CHANGED
@@ -19,7 +19,7 @@ class Ride:
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
-
user="
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
+
user=os.getenv("postgre_user"),
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|
views/gra_04_database/.gpteng/memory/logs/all_output.txt
CHANGED
@@ -106,7 +106,7 @@ import psycopg2
|
|
106 |
def connect_to_db():
|
107 |
conn = psycopg2.connect(
|
108 |
dbname="neondb",
|
109 |
-
user="
|
110 |
password=os.getenv("postgre_pass"),
|
111 |
host=os.getenv("postgre_host"),
|
112 |
port=5432,
|
|
|
106 |
def connect_to_db():
|
107 |
conn = psycopg2.connect(
|
108 |
dbname="neondb",
|
109 |
+
user=os.getenv("postgre_user"),
|
110 |
password=os.getenv("postgre_pass"),
|
111 |
host=os.getenv("postgre_host"),
|
112 |
port=5432,
|
views/gra_04_database/.gpteng/memory/logs/gen_entrypoint_chat.txt
CHANGED
@@ -45,7 +45,7 @@ File: database.py
|
|
45 |
3 def connect_to_db():
|
46 |
4 conn = psycopg2.connect(
|
47 |
5 dbname="neondb",
|
48 |
-
6 user="
|
49 |
7 password=os.getenv("postgre_pass"),
|
50 |
8 host=os.getenv("postgre_host"),
|
51 |
9 port=5432,
|
|
|
45 |
3 def connect_to_db():
|
46 |
4 conn = psycopg2.connect(
|
47 |
5 dbname="neondb",
|
48 |
+
6 user=os.getenv("postgre_user"),
|
49 |
7 password=os.getenv("postgre_pass"),
|
50 |
8 host=os.getenv("postgre_host"),
|
51 |
9 port=5432,
|
views/gra_04_database/rides.py
CHANGED
@@ -19,7 +19,7 @@ class Ride:
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
-
user="
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|
|
|
19 |
def connect_to_db():
|
20 |
conn = psycopg2.connect(
|
21 |
dbname="neondb",
|
22 |
+
user=os.getenv("postgre_user"),
|
23 |
password=os.getenv("postgre_pass"),
|
24 |
host=os.getenv("postgre_host"),
|
25 |
port=5432,
|