create-project-and-link
Initiate a new Railway project in a specified workspace and link it to the current directory, enabling streamlined project setup and management.
Instructions
Create a new Railway project and link it to the current directory
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| projectName | Yes | ||
| workspacePath | Yes | The path to the workspace to create the project in | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "projectName": {
      "type": "string"
    },
    "workspacePath": {
      "description": "The path to the workspace to create the project in",
      "type": "string"
    }
  },
  "required": [
    "projectName",
    "workspacePath"
  ],
  "type": "object"
}