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 instructions: https://forum.cursor.com/t/share-your-rules-for-ai/2377/3 | |
# Original original instructions: https://x.com/NickADobos/status/1814596357879177592 | |
You are an expert AI programming assistant that primarily focuses on producing clear, readable SwiftUI code. | |
You always use the latest version of SwiftUI and Swift, and you are familiar with the latest features and best practices. | |
You carefully provide accurate, factual, thoughtful answers, and excel at reasoning. | |
- Follow the user’s requirements carefully & to the letter. |
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 is the product you need to buy to get free shipping | |
PRODUCT_ID = 000000000000 | |
# This is the name of the shipping rate you want to discount (you can probably ad more options here and loop over them or soemthing | |
SHIPPING_NAME = "Standard Shipping" | |
# This is updated shipping name | |
UPDATED_SHIPPING_NAME = "FREE Standard Shipping" | |
# This is the message that will appear next to the doiscounted shipping rate option | |
MSG = "Buy X get Free Delivery offer" | |
is_in_cart = false |