前端技术之:Prisma Demo服务部署过程记录
admin
2023-02-13 17:00:06
0

安装前提条件:

1、已经安装了docker运行环境

2、以下命令执行记录发生在MackBook环境

3、已经安装了PostgreSQL(我使用的是11版本)

4、Node开发运行环境可以正常工作


首先需要通过Node包管理器安装Prisma工具:

npm install -g prisma


然后,创建并初始化prisma项目:

prisma init prisma-study

? Set up a new Prisma server or deploy to an existing server? (Use arrow keys)

                        

  You can set up Prisma for local development (based on docker-compose)

❯ Use existing database      Connect to existing database

  Create new database        Set up a local database using Docker

                        

  Or deploy to an existing Prisma server:

  Demo server                Hosted demo environment incl. database (requires login)

  Use other server           Manually provide endpoint of a running Prisma server


选择使用已存在的数据库(Use existing database)后,回车确认选择。


? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to?

  MySQL             MySQL compliant databases like MySQL or MariaDB

❯ PostgreSQL        PostgreSQL database


移动上下箭头键盘按键,选择PostgreSQL后,再次回车确认选择。


? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to? PostgreSQL

? Does your database contain existing data? (Use arrow keys)

❯ No

  Yes (experimental - Prisma migrations not yet supported)

  

Warning: Introspecting databases with existing data is currently an experimental feature. If you find any issues, please report them here: https://github.co

m/prisma/prisma/issues


提示是否在选择的数据库中包含已存在数据。因为是一个新库,所以默认选择No,然后回车确认。

? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to? PostgreSQL

? Does your database contain existing data? No

? Enter database host (localhost)


输入数据库的主机地址(注意,因为prisma会运行在docker中,所以,这儿需要配置宿主机IP,在类Linux系统上可以通过ifconfig命令来获取IP)。

? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to? PostgreSQL

? Does your database contain existing data? No

? Enter database host 10.111.152.242

? Enter database port (5432)


回车确认使用默认的Postgres数据库的端口。

? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to? PostgreSQL

? Does your database contain existing data? No

? Enter database host 10.xxx.xxx.xxx(此处为你的docker宿主机IP)

? Enter database port 5432

? Enter database user


输入数据库的用户名后回车确认。

? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to? PostgreSQL

? Does your database contain existing data? No

? Enter database host 10.xxx.xxx.xxx(此处为你的docker宿主机IP)

? Enter database port 5432

? Enter database user postgres

? Enter database password

输入数据库用户对应的密码后回车确认。

? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to? PostgreSQL

? Does your database contain existing data? No

? Enter database host 10.xxx.xxx.xxx(此处为你的docker宿主机IP)

? Enter database port 5432

? Enter database user postgres

? Enter database password study

? Enter database name


输入使用的数据库名称后回车。

? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to? PostgreSQL

? Does your database contain existing data? No

? Enter database host 10.xxx.xxx.xxx(此处为你的docker宿主机IP)

? Enter database port 5432

? Enter database user postgres

? Enter database password study

? Enter database name study

? Use SSL? (Y/n)


提示是否使用安全的网络协议,这里选择不使用(输入n后回车)。

? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to? PostgreSQL

? Does your database contain existing data? No

? Enter database host 10.xxx.xxx.xxx(此处为你的docker宿主机IP)

? Enter database port 5432

? Enter database user postgres

? Enter database password study

? Enter database name study

? Use SSL? No

Connecting to database 18ms

? Select the programming language for the generated Prisma client

  Prisma TypeScript Client

  Prisma Flow Client

❯ Prisma JavaScript Client

  Prisma Go Client

  Don't generate

这里选择产生JavaScript客户端脚本(Prisma JavaScript Client)。

? Set up a new Prisma server or deploy to an existing server? Use existing database

? What kind of database do you want to deploy to? PostgreSQL

? Does your database contain existing data? No

? Enter database host 10.xxx.xxx.xxx(此处为你的docker宿主机IP)

? Enter database port 5432

? Enter database user postgres

? Enter database password study

? Enter database name study

? Use SSL? No

Connecting to database 18ms

? Select the programming language for the generated Prisma client Prisma JavaScript Client

Created 3 new files:                                                                          

  prisma.yml          Prisma service definition

  datamodel.prisma    GraphQL SDL-based datamodel (foundation for database)

  docker-compose.yml  Docker configuration file

Next steps:

  1. Open folder: cd prisma-study

  2. Start your Prisma server: docker-compose up -d

  3. Deploy your Prisma service: prisma deploy

  4. Read more about Prisma server:

     http://bit.ly/prisma-server-overview

Generating schema... 20ms

Saving Prisma Client (JavaScript) at /Users/chunrong.liu/dev/study/prisma-study/generated/prisma-client/


至此,Prisma项目创建并初始化完毕。

接下来按昭Next steps下面的步骤提示执行后续操作。

通过以下命令切换当前目录至刚创建的项目目录(prisma-study)中。

cd prisma-study/


通过docker编排命令在docker中运行prisma服务器。

docker-compose up -d


执行后命令行提示如下:

Creating prisma-study_prisma_1 … done

此时服务运行成功。


通过以下命令部署prisma服务。

$ prisma deploy

Creating stage default for service default ✔

Deploying service `default` to stage `default` to server `local` 476ms

Changes:

  User (Type)

  + Created type `User`

  + Created field `id` of type `GraphQLID!`

  + Created field `name` of type `String!`

  + Created field `updatedAt` of type `DateTime!`

  + Created field `createdAt` of type `DateTime!`

Applying changes 1.2s

Your Prisma GraphQL database endpoint is live:

  HTTP:  http://localhost:4466

  WS:    ws://localhost:4466

用流程器打开http://localhost:4466/链接地址,可以看到如下的UI界面。

前端技术之:Prisma Demo服务部署过程记录

运行如下命令可以看到演练数据:

$ prisma playground

Serving playground at http://localhost:3000/playground


此时会自动打开浏览器,并显示如下界面:

前端技术之:Prisma Demo服务部署过程记录

关于数据库无法连接的问题:

https://blog.csdn.net/liuchunming033/article/details/44810899

官方参考资料地址:

https://www.prisma.io/docs/quickstart/


相关内容

热门资讯

山西发布山洪蓝色预警,涉8市4... 2026年7月24日下午,山西省水利厅和山西省气象局联合发布山洪灾害气象风险预警,预计未来12小时,...
中央决定:华润集团董事长调整 2026年7月23日,华润(集团)有限公司召开中层以上管理人员大会。中央组织部有关负责同志宣布了党中...
学习笔记丨“努力让每个孩子都能... 制作:王宇峰 岳小乔 贾雪
活力中国调研行丨一束“光”的故... 它被称为“最快的刀”“最准的尺”“最亮的光”。从一束“光”到一颗“芯”,再到规模千亿的产业集群,今天...
携手前沿技术 共创智能未来 携手前沿技术 共创智能未来 ——来自2026年世界互联网大会数字丝路发展论坛的声音 夏日长安,秦岭叠...
上海浩劢取得桌面式轻型悬臂吊专... 国家知识产权局信息显示,上海浩劢工业科技有限公司取得一项名为“桌面式轻型悬臂吊”的专利,授权公告号C...
毒油风暴未歇民进党却急着上架,... 海峡导报综合报道 岛内毒油食安风暴持续延烧,台北市长蒋万安持续号召民众7·25上凯道,但“食药署”2...
WAIC挤满“卖铲人”,但算力... 2026年的WAIC,机器人依然抢占了绝大多数镜头。但展馆里数量增长最快的,是自称“AI Infra...
对话芯展速许玮:“内存墙”下,... Token经济时代,衡量AI价值的标准,正从模型能力转向Token生产效率。AI因此从工具演变为新的...
菲尔兹奖得主邓煜写过这些诗词 邓煜 李少君 徐俪成 | 澎湃新闻记者 徐萧 整理北京时间7月23日晚,中国数学家王虹、邓煜获颁菲尔...