Skip to content

Commit 70bce90

Browse files
authored
Merge pull request #62 from forumone/1.x-RC
1.0.7
2 parents 85d7a10 + b00bbb1 commit 70bce90

File tree

378 files changed

+21089
-21138
lines changed

Some content is hidden

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

378 files changed

+21089
-21138
lines changed

.buildkite/pipeline-base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ env:
3232
ECR_NAMESPACE: "${IMAGE_REPOSITORY}:${BUILDKITE_PIPELINE_SLUG}"
3333

3434
# Define service directory were the Dockerfile is used
35-
DOCKERFILE_LOCATION: "./services/app"
35+
DOCKERFILE_LOCATION: "./"
3636
steps:
3737
- label: ":hammer: :docker: Building Docker Image"
3838
key: "build-image"
@@ -45,7 +45,7 @@ steps:
4545
- *ecr
4646
- seek-oss/aws-sm#v2.0.0:
4747
file:
48-
- path: services/app/.env
48+
- path: .env
4949
secret-id: [NEED THIS CONFIGURED]
5050

5151
# Wait for images to finish building.
File renamed without changes.

.ddev/config.mutagen.yaml

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

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
defaults:
99
run:
10-
working-directory: ./services/app
10+
working-directory: ./
1111

1212
strategy:
1313
matrix:
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
defaults:
4242
run:
43-
working-directory: ./services/app
43+
working-directory: ./
4444

4545
strategy:
4646
matrix:

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,41 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
13
# dependencies
24
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
317

418
# misc
519
.DS_Store
620
*.pem
721
.idea
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# local env files
29+
.env.local
30+
.env.development.local
31+
.env.test.local
32+
.env.production.local
33+
34+
# vercel
35+
.vercel
36+
37+
# TypeScript
38+
tsconfig.tsbuildinfo
39+
40+
# Storybook build files
41+
storybook-static/

0 commit comments

Comments
 (0)