mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 13:37:28 +00:00
Add cypress.env.example (#5366)
* Add cypress.env.example file * Remove js config(unused) * Remove all env vars from config file
This commit is contained in:
parent
6e057e89b9
commit
15bd45c2d2
4 changed files with 51 additions and 61 deletions
3
cypress-tests/.gitignore
vendored
3
cypress-tests/.gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
/node_modules
|
||||
/node_modules
|
||||
/cypress.env.json
|
||||
|
|
@ -12,55 +12,7 @@ module.exports = defineConfig({
|
|||
viewportHeight: 960,
|
||||
chromeWebSecurity: false,
|
||||
trashAssetsBeforeRuns: true,
|
||||
env: {
|
||||
pg_host: "",
|
||||
pg_user: "",
|
||||
pg_password: "",
|
||||
|
||||
elasticsearch_host: "",
|
||||
elasticsearch_user: "",
|
||||
elasticsearch_password: "",
|
||||
|
||||
sso_password: "",
|
||||
git_user: "",
|
||||
google_user: "",
|
||||
|
||||
dynamodb_access_key: "",
|
||||
dynamodb_secret_key: "",
|
||||
|
||||
smtp_host: "",
|
||||
smtp_port: "587",
|
||||
smtp_user: "",
|
||||
smtp_password: "",
|
||||
|
||||
redis_host: "",
|
||||
redis_port: "",
|
||||
redis_password: "",
|
||||
|
||||
mongodb_connString: "",
|
||||
mongodb_host: "",
|
||||
mongodb_user: "",
|
||||
mongo_password: "",
|
||||
|
||||
bigquery_pvt_key: {},
|
||||
|
||||
firestore_pvt_key: {},
|
||||
|
||||
mysql_host: "",
|
||||
mysql_user: "",
|
||||
mysql_password: "",
|
||||
|
||||
aws_access: "",
|
||||
aws_secret: "",
|
||||
|
||||
},
|
||||
db: {
|
||||
user: "postgres",
|
||||
host: "localhost",
|
||||
database: "tooljet_development",
|
||||
password: "postgres",
|
||||
port: "5432",
|
||||
},
|
||||
e2e: {
|
||||
setupNodeEvents(on, config) {
|
||||
on("task", {
|
||||
|
|
|
|||
49
cypress-tests/cypress.env.example
Normal file
49
cypress-tests/cypress.env.example
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"sso_password": "",
|
||||
"git_user": "",
|
||||
"google_user": "",
|
||||
|
||||
"pg_host": "",
|
||||
"pg_user": "",
|
||||
"pg_password": "",
|
||||
|
||||
"elasticsearch_host": "",
|
||||
"elasticsearch_user": "",
|
||||
"elasticsearch_password": "",
|
||||
|
||||
"dynamodb_access_key": "",
|
||||
"dynamodb_secret_key": "",
|
||||
|
||||
"smtp_host": "",
|
||||
"smtp_port": "",
|
||||
"smtp_user": "",
|
||||
"smtp_password": "",
|
||||
|
||||
"redis_host": "",
|
||||
"redis_port": "",
|
||||
"redis_password": "",
|
||||
|
||||
"mongodb_connString": "",
|
||||
"mongodb_host": "",
|
||||
"mongodb_user": "",
|
||||
"mongo_password": "",
|
||||
|
||||
"bigquery_pvt_key": {},
|
||||
|
||||
"firestore_pvt_key": {},
|
||||
|
||||
"mysql_host": "",
|
||||
"mysql_user": "",
|
||||
"mysql_password": "",
|
||||
|
||||
"aws_access": "",
|
||||
"aws_secret": "",
|
||||
|
||||
"app_db": {
|
||||
"user": "postgres",
|
||||
"host": "localhost",
|
||||
"database": "tooljet_development",
|
||||
"password": "postgres",
|
||||
"port": "5432"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"paths": {
|
||||
"Texts/*": [
|
||||
"./constants/texts/*"
|
||||
],
|
||||
"Selectors/*": [
|
||||
"./constants/selectors/*"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue