Skip to content

Commit 11ec030

Browse files
committed
organize folder structure
1 parent 82355e6 commit 11ec030

37 files changed

+11
-55
lines changed

.circleci/config.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

backend/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tmp
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docker-compose.prod.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: '3.4'
44
services:
55
pict_api_prod:
66
build:
7-
context: .
7+
context: ./backend
88
target: target_for_production
99
environment:
1010
NODE_ENV: production
@@ -21,9 +21,9 @@ services:
2121
environment:
2222
NODE_ENV: development # run frontend as dev mode to point to the local API
2323
volumes:
24-
- ./front:/root/front
25-
- /root/front/node_modules/
26-
working_dir: /root/front
24+
- ./frontend:/root/frontend
25+
- /root/frontend/node_modules/
26+
working_dir: /root/frontend
2727
ports:
2828
- '3000:3000'
2929
command: sh -c 'yarn && yarn start'

docker-compose.test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: '3.4'
44
services:
55
pict_api_test:
66
build:
7-
context: .
7+
context: ./backend
88
target: target_for_compilation
99
environment:
1010
NODE_ENV: development

0 commit comments

Comments
 (0)