[筆記] Sequelize 套件無法運作 – Node 14 與 pg 套件衝突解法
近期在升級舊專案的時候,用 seqielize 套件在取用 findOne 等方法時就默默的卡住了,也沒有爆出任何錯誤訊息。原先懷疑是 docker 的對外 P Read More …
點數旅行 留學 信用卡 程式學習
近期在升級舊專案的時候,用 seqielize 套件在取用 findOne 等方法時就默默的卡住了,也沒有爆出任何錯誤訊息。原先懷疑是 docker 的對外 P Read More …
當接收到前端傳回來的資料時,要如何在同一個 model 內同時查詢多個字串,是這篇要筆記的重點。 運用方法 JavaScript 的 split 來分割字串,然 Read More …
AlphaCamp 的第四學期內容算是非常扎實。隨著接觸的內容變多的情況下,在心態上也得有所轉變,不再能一味的希望課程能教導或提供完整的範例給你。課程的內容應被 Read More …
本篇記錄下 AlphaCamp 第四學期的重頭戲之一,與他人一同打造類 Twitter 專案的過程。同時,這也是記錄如何從無到有打造一個專案的過程。 一、專案規 Read More …
本篇記錄下如何將 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 …