hi... i'm new to prisma. can any body solve  this ...
# orm-help
k
hi... i'm new to prisma. can any body solve  this for me 👇 $ prisma deploy (node:21992) Warning: Accessing non-existent property 'count' of module exports inside circular dependency (Use
node --trace-warnings ...
to show where the warning was created) (node:21992) Warning: Accessing non-existent property 'findOne' of module exports inside circular dependency (node:21992) Warning: Accessing non-existent property 'remove' of module exports inside circular dependency (node:21992) Warning: Accessing non-existent property 'updateOne' of module exports inside circular dependency (node:21992) [DEP0097] DeprecationWarning: Using a domain property in MakeCallback is deprecated. Use the async_context variant of MakeCallback or the AsyncResource class instead. ? Set up a new Prisma server or deploy to an existing server? Demo server + MySQL database ? Choose the region of your demo server 96karthikhebbar/demo-eu1 ? Choose a name for your service hackernews ? Choose a name for your stage demo-server Written endpoint
<https://eu1.prisma.sh/96karthikhebbar/hackernews/demo-server>
to prisma.yml Creating stage demo-server for service hackernews ! ERROR: 96karthikhebbar~hackernews is not a valid name for a service name. It must start with a letter and may contain up to 30 letters, numbers, underscores and hyphens. {   "data": {     "addProject": null   },   "errors": [     {       "locations": [         {           "line": 2,           "column": 9         }       ],       "path": [         "addProject"       ],       "code": 4001,       "message": "96karthikhebbar~hackernews is not a valid name for a service name. It must start with a letter and may contain up to 30 letters, numbers, underscores and hyphens.",       "requestId": "eu1:ckgfgum2e4k4x095075w21xga"     }   ],   "status": 200 }
r
@Karthik Hebbar 👋 The reason is it cannot create a service starting with a letter which is in your username. As you are getting started with Prisma, I would strongly suggest to start with Prisma 2 as it doesn’t require an external server and deploy commands. https://www.prisma.io/docs/getting-started/quickstart-node
k
thanks for the response..