create-asaje-go-vue 0.2.4 → 0.2.5

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.
@@ -947,7 +947,19 @@ async function runSetupRailway(argv) {
947
947
 
948
948
  const rabbitMqResult = await ensureRailwayResource({
949
949
  aliases: ["rabbitmq"],
950
- commandArgs: ["deploy", "--template", "RabbitMQ"],
950
+ commandArgs: [
951
+ "add",
952
+ "--service",
953
+ "rabbitmq",
954
+ "--image",
955
+ "rabbitmq:4.1-management-alpine",
956
+ "--variables",
957
+ "RABBITMQ_DEFAULT_USER=app",
958
+ "--variables",
959
+ `RABBITMQ_DEFAULT_PASS=${randomSecret(18)}`,
960
+ "--variables",
961
+ `RABBITMQ_ERLANG_COOKIE=${randomSecret(24)}`,
962
+ ],
951
963
  dryRun: answers.dryRun,
952
964
  existingServices,
953
965
  key: "rabbitmq",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-asaje-go-vue",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "CLI to scaffold, configure, and run the Asaje Go + Vue boilerplate",
5
5
  "type": "module",
6
6
  "bin": {