https://github.com/timcsy/todolist-vue
A Simple Todo List written in Vue for starters.
https://github.com/timcsy/todolist-vue
Last synced: 2 months ago
JSON representation
A Simple Todo List written in Vue for starters.
- Host: GitHub
- URL: https://github.com/timcsy/todolist-vue
- Owner: timcsy
- Created: 2018-07-17T16:25:30.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-25T05:10:46.000Z (over 6 years ago)
- Last Synced: 2025-01-18T23:14:27.790Z (4 months ago)
- Language: JavaScript
- Size: 45.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Todo List with Vue and Koa2 Mongoose
===Demo
---
https://todolistvue.tew.tw使用說明
---
先在跟目錄創建一個叫做 config 的資料夾
在資料夾下新增一個檔案叫做 mongoose.js 如下:
```
module.exports = {
hostname: '主機名稱(預設值為localhost)',
port: '端口(預設值為27017)'
username: '使用者名稱',
password: '密碼',
database: 'todolist_vue'
}
```
就可以完成資料庫設定了安裝
---
```
npm instll
```執行
---
產生前端程式碼
```
npm run build
```
運行後端server
```
npm run server
```
產生前端程式碼與運行後端server
```
npm run startor
npm start
```