Skip to content

Commit 28d84cc

Browse files
committed
build and dev fixes
1 parent fb80c3b commit 28d84cc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/dockerize.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version: '14.15'
2020
- name: build
21-
run: npm ci && npm run build
21+
run: npm ci && npm run package:build
2222
- name: Log in to Docker Hub
2323
uses: docker/login-action@v1
2424
with:

Dockerfile

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
FROM node:12.16-stretch
22

3-
COPY ./package.json .
4-
COPY ./package-lock.json .
5-
COPY ./index.ts .
6-
COPY build ./build
3+
COPY package.json .
4+
COPY index.js .
5+
COPY index.js.map .
6+
COPY index.ts .
77
COPY node_modules ./node_modules
8+
COPY imports ./imports
89

910
ENV PORT 3006
1011
ENV DOCKER 1

nodemon.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"watch": ["imports"],
2+
"watch": ["imports", "index.ts"],
33
"ext": "ts",
44
"exec": "ts-node ./index.ts"
55
}

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "@deep-foundation/deeplinks",
3-
"version": "0.0.10",
3+
"version": "0.0.12",
44
"scripts": {
55
"docker-start": "cd local && docker-compose up",
66
"docker-stop": "cd local && docker-compose down",
7-
"build": "tsc --project ./tsconfig.json",
87
"dev": "(cd local && docker-compose down || true) && cross-env npm_config_yes=true JWT_SECRET=\"{\\\"type\\\":\\\"HS256\\\",\\\"key\\\":\\\"3EK6FD+o0+c7tzBNVfjpMkNDi2yARAAKzQlk8O2IKoxQu4nF7EdAh8s3TwpHwrdWT6R\\\"}\" MIGRATIONS_ID_TYPE_SQL=bigint MIGRATIONS_ID_TYPE_GQL=bigint MIGRATIONS_HASURA_PATH=localhost:8080 MIGRATIONS_HASURA_SSL=0 MIGRATIONS_HASURA_SECRET=myadminsecretkey NEXT_PUBLIC_DEEPLINKS_SERVER=http://localhost:3007 NEXT_PUBLIC_HASURA_PATH=localhost:8080 NEXT_PUBLIC_HASURA_SSL=0 HASURA_PATH=localhost:8080 HASURA_SSL=0 MIGRATIONS_DEEPLINKS_APP_URL=http://host.docker.internal:3007 DEEPLINKS_URL=http://host.docker.internal:3006 PORT=3006 nodemon index.ts",
98
"tsnode": "npm_config_yes=true JWT_SECRET=\"{\\\"type\\\":\\\"HS256\\\",\\\"key\\\":\\\"3EK6FD+o0+c7tzBNVfjpMkNDi2yARAAKzQlk8O2IKoxQu4nF7EdAh8s3TwpHwrdWT6R\\\"}\" MIGRATIONS_ID_TYPE_SQL=bigint MIGRATIONS_ID_TYPE_GQL=bigint MIGRATIONS_HASURA_PATH=localhost:8080 MIGRATIONS_HASURA_SSL=0 MIGRATIONS_HASURA_SECRET=myadminsecretkey NEXT_PUBLIC_DEEPLINKS_SERVER=http://localhost:3007 NEXT_PUBLIC_HASURA_PATH=localhost:8080 NEXT_PUBLIC_HASURA_SSL=0 HASURA_PATH=localhost:8080 HASURA_SSL=0 MIGRATIONS_DEEPLINKS_APP_URL=http://host.docker.internal:3007 DEEPLINKS_URL=http://host.docker.internal:3006 PORT=3006 ts-node index.ts",
109
"package:build": "tsc --project tsconfig.json && (cd ./migrations && rimraf ./*.js && rimraf ./*.js.map && rimraf ./*.d.ts)",

0 commit comments

Comments
 (0)