├── .gitignore └── CNAME /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | npm-debug.log* 3 | 4 | .DS_Store 5 | node_modules/* 6 | 7 | *.bak 8 | *.swp 9 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | tech.youmi.net 2 | --------------------------------------------------------------------------------