No content to show

User Activity

Yep. Just use .env in web directory and install dotenv in web directory as well. I haven't really tried using .env in the root. If you look at Dockerfile, it copies web directory for deployment and not the root. KInda made sense to me to have .env in...
Shopify app doesn't use Next.js anymore. So, it is up to you if you want to re-create .env.{environment} paradigm with dotenv . I don't suggest doing it. It complicates things. I just use one .env file for local development. I don't commit it to the ...
MySQL doesn't have built in Boolean type. Instead it uses TINYINT(1) type. MySQL provides BOOLEAN or BOOL type for convince. It is synonym of TINYINT(1). True or false values will be converted to 1 or 0. So, in your case 1 means TRUE. 
You can create .env file in web directory. While in web directory, also npm install dotenv. Add import 'dotenv/config'  to the top of web/index.js. Now you should be able to put and access environment variables, such as DB connection variables, from ...
Sending Liquid syntax for 404 didn't fit our case, because our app is installed on multiple Shopify stores. Different stores may have different 404 Liquid syntax.  Since Shopify doesn't trigger 404 template on 404 status, but follows 3xx redirects, w...
This widget could not be displayed.
This widget could not be displayed.
This widget could not be displayed.
This widget could not be displayed.
Likes given to