Skip to content

Commit ffc44ab

Browse files
committed
style(typescript): convert to typescript as the de facto type system
1 parent 42db7db commit ffc44ab

33 files changed

+1125
-5826
lines changed

.babelrc

-20
This file was deleted.

.eslintrc

-25
This file was deleted.

.flowconfig

-14
This file was deleted.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
quay-pull-secret.yaml
22
node_modules
33
lib
4+
dist
45
.idea
56
.nyc_output

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package.json

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV BUILD_LIBRDKAFKA=0
77

88
WORKDIR ${APP_PATH}
99

10-
COPY package*.json yarn.lock .babelrc ./
10+
COPY package*.json yarn.lock tsconfig.json ./
1111
COPY src/ src/
1212

1313
RUN \
@@ -17,4 +17,5 @@ RUN \
1717

1818
COPY docker-entrypoint.sh /usr/local/bin
1919

20-
ENTRYPOINT ["docker-entrypoint.sh"]
20+
ENTRYPOINT ["docker-entrypoint.sh"]
21+
CMD ["start"]

docker-compose.yml

+2-13
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
build:
66
context: .
77
dockerfile: Dockerfile
8-
command: ["watch"]
8+
command: ["start"]
99
environment:
1010
NODE_ENV: "local"
1111
PG_HOST: postgres
@@ -32,16 +32,5 @@ services:
3232
ports:
3333
- "5434:5432"
3434

35-
pg-admin:
36-
image: dpage/pgadmin4
37-
environment:
38-
PGADMIN_DEFAULT_EMAIL: [email protected]
39-
PGADMIN_DEFAULT_PASSWORD: password
40-
volumes:
41-
- pgadmin-data:/var/lib/pgadmin
42-
ports:
43-
- "3432:80"
44-
4535
volumes:
46-
pg-data:
47-
pgadmin-data:
36+
pg-data:

flow-typed/npm/express_v4.x.x.js

-204
This file was deleted.

0 commit comments

Comments
 (0)