-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into run_error_strip_refresh
- Loading branch information
Showing
31 changed files
with
5,856 additions
and
2,157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,41 @@ | ||
# Note: This file is only used for Atlantis local development | ||
version: "3.8" | ||
services: | ||
ngrok: | ||
image: wernight/ngrok:latest@sha256:d211f29ebcfe5f4e72df4fa8bdd9a667886e127d7fcb1be4a1af5ad83a8a1b77 | ||
ports: | ||
- 4040:4040 | ||
environment: | ||
# https://dashboard.ngrok.com/get-started/your-authtoken | ||
# NGROK_AUTH: REPLACE-WITH-YOUR-TOKEN // set this in atlantis.env | ||
NGROK_PROTOCOL: http | ||
NGROK_PORT: atlantis:4141 | ||
env_file: | ||
- ./atlantis.env | ||
depends_on: | ||
- atlantis | ||
redis: | ||
image: redis:7.2-alpine@sha256:a40e29800d387e3cf9431902e1e7a362e4d819233d68ae39380532c3310091ac | ||
restart: always | ||
ports: | ||
- '6379:6379' | ||
command: redis-server --save 20 1 --loglevel warning --requirepass test123 | ||
volumes: | ||
- redis:/data | ||
atlantis: | ||
depends_on: | ||
- redis | ||
build: | ||
context: . | ||
dockerfile: Dockerfile.dev | ||
ports: | ||
- 4141:4141 | ||
volumes: | ||
- ~/.ssh:/.ssh | ||
- ./:/atlantis/src | ||
# Contains the flags that atlantis uses in env var form | ||
env_file: | ||
- ./atlantis.env | ||
ngrok: | ||
image: wernight/ngrok:latest@sha256:d211f29ebcfe5f4e72df4fa8bdd9a667886e127d7fcb1be4a1af5ad83a8a1b77 | ||
ports: | ||
- 4040:4040 | ||
environment: | ||
# https://dashboard.ngrok.com/get-started/your-authtoken | ||
# NGROK_AUTH: REPLACE-WITH-YOUR-TOKEN // set this in atlantis.env | ||
NGROK_PROTOCOL: http | ||
NGROK_PORT: atlantis:4141 | ||
env_file: | ||
- atlantis.env | ||
depends_on: | ||
- atlantis | ||
redis: | ||
image: redis:7.2-alpine@sha256:a40e29800d387e3cf9431902e1e7a362e4d819233d68ae39380532c3310091ac | ||
restart: always | ||
ports: | ||
- 6379:6379 | ||
command: redis-server --save 20 1 --loglevel warning --requirepass test123 | ||
volumes: | ||
- redis:/data | ||
atlantis: | ||
depends_on: | ||
- redis | ||
build: | ||
context: . | ||
dockerfile: Dockerfile.dev | ||
ports: | ||
- 4141:4141 | ||
volumes: | ||
- ${HOME}/.ssh:/.ssh:ro | ||
- ${PWD}:/atlantis/src:ro | ||
# Contains the flags that atlantis uses in env var form | ||
env_file: | ||
- atlantis.env | ||
|
||
volumes: | ||
redis: | ||
driver: local | ||
redis: | ||
driver: local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
{ | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@playwright/test": "^1.44.0", | ||
"@vuepress/bundler-webpack": "2.0.0-rc.9", | ||
"@vuepress/plugin-docsearch": "2.0.0-rc.24", | ||
"@vuepress/plugin-docsearch": "2.0.0-rc.27", | ||
"@vuepress/plugin-google-analytics": "2.0.0-rc.21", | ||
"@vuepress/plugin-sitemap": "2.0.0-rc.25", | ||
"@vuepress/plugin-sitemap": "2.0.0-rc.26", | ||
"@vuepress/theme-default": "2.0.0-rc.24", | ||
"@vuepress/utils": "2.0.0-rc.9", | ||
"sass-loader": "14.1.1", | ||
"vuepress": "2.0.0-rc.9", | ||
"vue": "3.4.21" | ||
"vue": "3.4.21", | ||
"vuepress": "2.0.0-rc.9" | ||
}, | ||
"scripts": { | ||
"website:dev": "vuepress dev runatlantis.io", | ||
"website:build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build runatlantis.io" | ||
"website:build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build runatlantis.io", | ||
"e2e": "playwright test" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
testDir: './runatlantis.io/e2e' | ||
}; |
Oops, something went wrong.