Skip to content

Commit a1cfc7c

Browse files
committed
Initial commit
1 parent 08d6dfd commit a1cfc7c

File tree

834 files changed

+91056
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

834 files changed

+91056
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.DS_Store
3+
__pycache__

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "TS-Node",
9+
"type": "node",
10+
"request": "launch",
11+
"runtimeExecutable": "${workspaceRoot}/generator/node_modules/.bin/ts-node",
12+
"program": "${workspaceRoot}/generator/src/generate-models.ts",
13+
"cwd": "${workspaceRoot}/generator/",
14+
"internalConsoleOptions": "openOnSessionStart",
15+
"skipFiles": ["<node_internals>/**", "generator/node_modules/**"]
16+
}
17+
]
18+
}

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"python.analysis.extraPaths": [
3+
"./src/models/3_0_0"
4+
]
5+
}

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
run:
2+
python app.py
3+
4+
setup: requirements.txt
5+
pip install -r requirements.txt
6+
7+
clean:
8+
rm -rf __pycache__
9+
10+
test:
11+
python -m unittest discover .
12+
13+
generate-models:
14+
cd generator && npm i && npm run generate

0 commit comments

Comments
 (0)