Skip to content

Commit dbf6cf7

Browse files
committed
feat: Added Python backend and TCP server
1 parent a172347 commit dbf6cf7

7 files changed

Lines changed: 9562 additions & 0 deletions

File tree

Makefile

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# What? A Makefile for running high level development tasks. For finer
2+
# grained tasks see `package.json` and use `npm run <task>`.
3+
#
4+
# Why? Because Makefiles provide a common entry point for developers
5+
# that are independent of the language and tooling used. In just
6+
# about all our repos you can run `make setup` to get a dev setup
7+
# and `cat Makefile` to quickly understand what to do next. Regardless
8+
# or whether it's a Typescript, Python or R project.
9+
10+
all: setup lint test build docs
11+
12+
setup:
13+
npm install
14+
15+
lint:
16+
npm run lint
17+
18+
test:
19+
npm test
20+
21+
build:
22+
npm run build
23+
24+
serve:
25+
npm run serve

0 commit comments

Comments
 (0)