Type
magento2-module
Core module for SeQura Payment Methods
magento2-module
MIT
None
None
None
None
None
seQura is the flexible payment platform that will help your business improve conversion and recurrence. The easiest, safest, and quickest way for your customers to pay on installments.
+6.000 e-commerce and +1.5 million delight shoppers already use seQura. Are you still thinking about it?
This WooCommerce plugin allows you to make payments with seQura.
Flexible payment solutions adapted to your business.
Widest flexible payment solutions in the market:
Your customers in good hands:
Obsessed with conversion and recurrence
Check the installation guide
Si tu comercio no está dado de alta en seQura, puedes hacerlo aquí para recibir credenciales de sandbox y empezar.
If you are not a seQura merchant yet, you can sign up here to get sandbox credentials and get started.
The repository includes a docker-compose file to easily test the module. You can start the environment with the following command:
./setup.sh
This will start a Magento 2 instance with the seQura module installed. You can access the admin panel at http://localhost:8018/admin
with the credentials admin
/password123
.
Once installed you could start/stop the magento instance with docker compose up
and docker compose down
commands.
You could create you own .env file to customize the environment. You can copy the .env.example file and modify the values as needed.
In order to use magento sample data you MUST set your credentials for https://repo.magento.com/ in you .env file at
COMPOSER_AUTH='{"http-basic":{"repo.magento.com":{"username":"<public-key>","password":"<private-key>"}}}'
Otherwise you will get a warning message:
"warning": "You haven't provided your Magento authentication keys. For instructions, visit https://devdocs.magento.com/guides/v2.3/install-gde/prereq/connect-auth.html"
and the installation will fail.
MAGENTO_VERSION
environment variable.SQ_M2_CORE_VERSION
environment variable. Leave it as local to use the local version of the module.MAGENTO_HOST
and MAGENTO_HTTP_PORT
environment variable.You can load sample data with the following command:
./bin/install-sampledata
or setting the MAGENTO_SAMPLEDATA
environment variable to yes
when before running the ./setup.sh script.
After installing sample data you may get 404 errors for http://${MAGENTO_HOST}/%7B%7BMEDIA_URL%7D%7Dstyles.css. To fix this issue go to Content -> Design -> Configuration -> Edit your theme -> HTML Head -> Scripts and Style Sheets and change the line with
{{MEDIA_URL}}styles.css
tomedia/styles.css
You can run commands in the Magento container with the following command:
./bin/magento <command>
To run magento commands in the container.
./bin/composer <command>
To run composer commands in the container.
./bin/mysql
To open mysql terminal in the container.
./bin/shell
To open a bash shell commands in the container.
./bin/xdebug
To toggle xdebug it will be enabled by default.