文件名称:teas-with-postgresql-raw
文件大小:268KB
文件格式:ZIP
更新时间:2024-06-20 00:59:03
JavaScript
自述文件 这个天堂般的应用程序是如何创建的: 获取生成的应用程序 $ express teas-with-postgresql-raw $ cd teas-with-postgresql-raw $ git init $ git add -A $ git commit -m "Initial commit" 添加 postgres 并建立与数据库的连接(和 gitignore 一些东西) 创建README.md并记录最令人惊奇的笔记 添加到package.json依赖项: "pg": "~4.3.0", $ npm install 使用以下内容创建.gitignore文件: node-modules/** 创建一个与 app 同名的 postgres 数据库 登录 postgres CLI $ psql -d postgres 创建数据库 如果您在应用名称中使用- ,
【文件预览】:
teas-with-postgresql-raw-master
----public()
--------bootstrap()
--------stylesheets()
----views()
--------teas()
--------layout.jade(399B)
--------error.jade(84B)
--------index.jade(166B)
----app.js(2KB)
----README.md(8KB)
----.gitignore(16B)
----app()
--------migrations()
----bin()
--------www(2KB)
----routes()
--------teas.js(1KB)
--------index.js(232B)
----package.json(363B)