Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ web_modules/
.env.test.local
.env.production.local
.env.local
.envrc

# parcel-bundler cache (https://parceljs.org/)

Expand Down
18 changes: 18 additions & 0 deletions go/xorm/.envrc.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
export CS_WORKSPACE_ID=

# Used by Stash CLI
export CS_CLIENT_ID=
export CS_CLIENT_KEY=

# Used by Proxy
export CS_ENCRYPTION__CLIENT_ID=
export CS_ENCRYPTION__CLIENT_KEY=
export CS_AUDIT__ENABLED=false
export CS_DATABASE__PORT=5432
export CS_DATABASE__USERNAME=postgres
export CS_DATABASE__PASSWORD=postgres
export CS_DATABASE__NAME=gotest
export CS_DATABASE__HOST=localhost
export CS_TEST_ON_CHECKOUT=true
export CS_STATEMENT_HANDLER=mylittleproxy
export CS_UNSAFE_LOGGING=true
1 change: 1 addition & 0 deletions go/xorm/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.envrc
3 changes: 3 additions & 0 deletions go/xorm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# EQL Go/Xorm example


Loading