File tree 3 files changed +26
-4
lines changed
3 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 9
9
10
10
.DS_Store
11
11
.idea
12
- .vscode
13
12
14
13
# DBs
15
14
long_term_memory
@@ -33,9 +32,6 @@ core/cat/plugins/*
33
32
# plugins readme can stay
34
33
! core /cat /plugins /how-to-write-a-plugin.md
35
34
36
- # tests plugin folder
37
- plugin_folder
38
-
39
35
# cache embedder
40
36
core /local_cache /*
41
37
Original file line number Diff line number Diff line change
1
+ {
2
+ // VScode debug setup. Thanks to @sambarza
3
+ // Use IntelliSense to learn about possible attributes.
4
+ // Hover to view descriptions of existing attributes.
5
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
6
+ "version" : " 0.2.0" ,
7
+ "configurations" : [
8
+ {
9
+ "name" : " Python: Remote Attach to Cat" ,
10
+ "type" : " python" ,
11
+ "request" : " attach" ,
12
+ "connect" : {
13
+ "host" : " localhost" ,
14
+ "port" : 5678
15
+ },
16
+ "pathMappings" : [
17
+ {
18
+ "localRoot" : " ${workspaceFolder}/core" ,
19
+ "remoteRoot" : " /app"
20
+ }
21
+ ],
22
+ "justMyCode" : true
23
+ }
24
+ ]
25
+ }
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ services:
11
11
# - .env
12
12
ports :
13
13
- ${CCAT_CORE_PORT:-1865}:80
14
+ - 5678:5678 # only for development purposes (take away in production)
14
15
volumes :
15
16
- ./core:/app
16
17
command :
You can’t perform that action at this time.
0 commit comments