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
<?php | |
/** | |
* SecurePay Standard Gateway | |
* | |
* @package Give | |
* @subpackage Gateways | |
* @copyright Copyright (c) 2016, WordImpress | |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License | |
* @since 1.0 | |
*/ |
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
// Endpoint(produção): | |
// https://www.pedidoviaweb.com.br/ws/integracao/index.php?metodo=enviaPedido&rede=XXX&loja=XXX | |
// Endpoint(Homologação): | |
// https://www.pedidoviaweb.com.br/teste/ws/integracao/index.php?metodo=enviaPedido&rede=XXX&loja=XXX | |
import {rest} from 'msw' | |
import {setupServer} from 'msw/node' | |
import {Ecletica} from './ecletica.server' |
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
{ | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[prisma]": { | |
"editor.defaultFormatter": "Prisma.prisma" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, |
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
name: "Chromatic Publish" | |
on: push | |
jobs: | |
# @see https://www.chromatic.com/docs/github-actions#support-for-codeactionscheckoutv2code-and-above | |
chromatic-deployment: | |
# Don't need to run if this is a dependency update | |
# if: ${{ github.actor != 'dependabot[bot]' }} | |
runs-on: ubuntu-latest |
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
version: '3.8' | |
services: | |
postgres: | |
image: postgres:latest | |
restart: always | |
environment: | |
- POSTGRES_USER=postgres | |
- POSTGRES_PASSWORD=postgres | |
- POSTGRES_DB=postgres | |
ports: |