To set up your Local store for Langshop testing follow next steps:
1. download and install ngrok;
2. add authorization token:
ngrok config add-authtoken <token> |
you can get your token after registering an account https://ngrok.com/;
3. start a tunnel for the port where Magento is available:
ngrok http 80 |
by default - 80, it might be different, for example http://localhost:8083/;
4. ngrok will give an external URL to access the store. For example, https://6f42-178-124-152-209.eu.ngrok.io/;
5. make changes in the core_config_data table in the Magento database:
web/unsecure/base_url - https://6f42-178-124-152-209.eu.ngrok.io/ (URL from point 4)
web/secure/base_url - https://6f42-178-124-152-209.eu.ngrok.io/ (URL from point 4);
6. run the following:
bin/magento c:c |
7. follow further instructions.