@lenne.tech/cli 1.37.0 → 1.37.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -260,10 +260,12 @@ const NewCommand = {
|
|
|
260
260
|
info(` - dev domains: dev.${domain} (app) + api.dev.${domain} (api)`);
|
|
261
261
|
info(` 2. CI/CD variables: TURBOOPS_PROJECT=${project} and TURBOOPS_TOKEN=<token> (masked).`);
|
|
262
262
|
info(' GitLab: Settings > CI/CD > Variables. GitHub: a repo variable + a repo secret.');
|
|
263
|
-
info(' 3. DNS A/AAAA records -> your server IP
|
|
263
|
+
info(' 3. DNS A/AAAA records -> your server IP:');
|
|
264
264
|
info(` - ${domain} (apex — NOT covered by a wildcard)`);
|
|
265
|
-
info(` - *.${domain} (covers api.${domain}
|
|
266
|
-
info(
|
|
265
|
+
info(` - *.${domain} (covers api.${domain}, dev.${domain} AND api.dev.${domain}:`);
|
|
266
|
+
info(' a DNS wildcard matches one or MORE labels, RFC 4592)');
|
|
267
|
+
info(` - *.dev.${domain} only needed if dev.${domain} exists as an EXPLICIT record`);
|
|
268
|
+
info(' (an explicit node blocks the parent wildcard for names below it)');
|
|
267
269
|
info(' 4. Set the stage env vars in TurboOps (per stage), e.g. for production:');
|
|
268
270
|
info(` NODE_ENV=production, NSC__BASE_URL=https://api.${domain},`);
|
|
269
271
|
info(' NSC__MONGOOSE__URI, NSC__BETTER_AUTH__SECRET, NSC__AI__ENCRYPTION_SECRET,');
|