-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:sashko9807/podkrepibg-frontend in…
…to new-campaign-statuses
- Loading branch information
Showing
182 changed files
with
10,708 additions
and
3,329 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/alpine | ||
{ | ||
"name": "NodeJS", | ||
"image": "ghcr.io/podkrepi-bg/nodejs-devcontainer:v1.2.0", | ||
"forwardPorts": [], // Forward ports | ||
"containerEnv": { | ||
"DATABASE_URL": "postgres://postgres:[email protected]:5432/postgres?schema=api" // Custom env vars | ||
}, | ||
"postStartCommand": "yarn", // Install dependencies | ||
"customizations":{ | ||
"vscode": { | ||
"extensions": [ | ||
"ms-azuretools.vscode-docker", | ||
"nrwl.angular-console", | ||
"esbenp.prettier-vscode", | ||
"firsttris.vscode-jest-runner", | ||
"dbaeumer.vscode-eslint" | ||
] | ||
} | ||
}, | ||
"mounts": [ | ||
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" | ||
] | ||
} | ||
"name": "NodeJS", | ||
"image": "ghcr.io/podkrepi-bg/nodejs-devcontainer:v1.2.0", | ||
"forwardPorts": [], // Forward ports | ||
"containerEnv": { | ||
"DATABASE_URL": "postgres://postgres:[email protected]:5432/postgres?schema=api" // Custom env vars | ||
}, | ||
"postStartCommand": "yarn", // Install dependencies | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-azuretools.vscode-docker", | ||
"nrwl.angular-console", | ||
"esbenp.prettier-vscode", | ||
"firsttris.vscode-jest-runner", | ||
"dbaeumer.vscode-eslint" | ||
] | ||
} | ||
}, | ||
"mounts": ["source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"] | ||
} |
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ GOOGLE_SECRET= | |
|
||
## Stripe ## | ||
############## | ||
STRIPE_PUBLIC_KEY= | ||
STRIPE_PUBLISHABLE_KEY= | ||
|
||
## Paypal ## | ||
############## | ||
|
@@ -43,3 +43,5 @@ PAYPAL_CLIENT_ID=sb | |
########### | ||
GHOST_API_URL=https://blog.podkrepi.bg | ||
GHOST_CONTENT_KEY=86ec17c4b9660acd66b6034682 | ||
[email protected] | ||
PODKREPI_PASSWORD=$ecurePa33 |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
export const stripeSuccessFormData = { | ||
cardNumber: '4242 4242 4242 4242', | ||
name: 'E2e_TEST_NAME', | ||
email: '[email protected]', | ||
expiryDate: '04 / 42', | ||
cvc: '424', | ||
country: 'BG', | ||
} | ||
|
||
export const stripeErrorNoBalanceFormData = { | ||
cardNumber: '4000 0000 0000 9995', | ||
name: 'E2e_TEST_NAME', | ||
email: '[email protected]', | ||
expiryDate: '04 / 42', | ||
cvc: '424', | ||
country: 'BG', | ||
} | ||
|
||
export const stripeAuthenticationRequiredFormData = { | ||
cardNumber: '4000 0027 6000 3184', | ||
name: 'E2e_TEST_NAME', | ||
email: '[email protected]', | ||
expiryDate: '04 / 42', | ||
cvc: '424', | ||
country: 'BG', | ||
} |
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,14 +1,5 @@ | ||
// This enum should be used as a parameter for methods in E2E tests | ||
|
||
// Check bgLocalizationOneTimeDonation["third-step"]["card-region"] | ||
export enum bgDonationRegions { | ||
EUROPE = 'Европа', | ||
GREAT_BRITAIN = 'Великобритания', | ||
OTHER = 'други', | ||
} | ||
|
||
export enum enDonationRegions { | ||
EUROPE = 'Europe', | ||
GREAT_BRITAIN = 'Great Britain', | ||
OTHER = 'other', | ||
export enum DonationRegions { | ||
EUROPE = 'EU', | ||
GREAT_BRITAIN = 'UK', | ||
OTHER = 'Other', | ||
} |
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
Oops, something went wrong.