標籤: heroku sequelize
[筆記] Heroku Sequelize 佈署細節
本篇記錄下如何將 SQL 關聯式資料庫佈署到 Heroku 上的步驟與心得。 操作步驟
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
// 1. Heroku 指定的資料庫是用 PostgreSQL,故先用 npm 安裝相關套件 npm i pg // 2. 調整 config/config.json 的設定 "production": { "use_env_variable": "DATABASE_URL", "dialect": "postgres", "protocol": "postgres", "dialectOptions": { "ssl": true } // 3. 建立 heroku 專案 heroku create // 4. 佈署到 heroku,在這一步若你的 git 存放位置和 package.json 不同,會導致佈署失敗。 git push heroku master // 5. 專案啟動 heroku ps:scale web=1 // 6. 在 heroku 上產生資料庫 heroku addons:create heroku-postgresql:hobby-dev // 7. 在 heroku 的資料庫內生成假資料 heroku run npx sequelize db:seed:all |
其他 Read More …