- 安装Bower
-
安装Bower到默认全局环境下
npm install -g bower
-
安装Bower到当前项目下并写入package.json文件里面
npm install bower --save
-
安装前段的包与库资源,通过编辑 bower.json 文件, 运行命令为 :
bower install
-
查看已安装的前段的包
bower list
-
安装前端的包与库资源,同时自动写入 bower.json 文件, 运行命令为 :
bower install -S
bower install --save
-
编辑后端依赖列表文件 package.json 文件, 运行命令为
npm install --save-dev
-
查看当前已安装的包
npm ls
-
Mac下使用 Homebrew 安装
brew install mongodb
-
安装完成后 可以
To have launchd start mongodb at login:
ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
Then to load mongodb now:
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
Or, if you don't want/need launchctl, you can just run:
mongod --config /usr/local/etc/mongod.conf
-
运行mongo, 并指定数据库路径(默认路径在/usr/local/var/mongodb)
mongod --dbpath <path to data directory>
(请确保当前用户对数据库文件路径有读写权限) -
或运行mongo, 并指定配置文件路径(默认的配置文件在 /usr/local/etc/mongod.conf)
mongod --dbpath <path to data directory>
-
mongo 的配置文件范例
// Store data in /usr/local/var/mongodb instead of the default /data/db
// dbpath = /usr/local/var/mongodb
dbpath = /Users/jinwyp/Documents/mongodata
// Append logs to /usr/local/var/log/mongodb/mongo.log
// logpath = /usr/local/var/log/mongodb/mongo.log
logpath = /Users/jinwyp/Documents/mongolog/mongo.log
logappend = true
// Only accept local connections
bind_ip = 127.0.0.1
// fork = true
// port = 27017
// quiet = true
// journal = true
- 到rubyinstaller.org下载windows安装包,并默认安装就可以了 打开Start Command Prompt with Ruby 输入ruby -v可以看到版本号
- 找到ruby安装目录并且把bin目录添加到用户变量path里面 (我的目录是C:\Ruby200-x64\bin) win+R 输入cmd 然后键入ruby -v 即可看到版本号
- 更换gem sources并安装compass
gem sources --remove https://rubygems.org/
gem sources -a http://ruby.taobao.org/
gem sources -l
gem install compass
- 遇到的问题gulp compass编码问题
Error: error public/app/css/sass/main.scss (Line 136: Invalid GBK character"\xE8")
参考Sass UTF-8 encoding on Windows 解决:在main.css顶部加上
@charset "utf-8";
-
到官网下载最新安装包,选择自己的版本(32位或64位) zip包和msi的内容是一样的都有bin文件夹
-
新建setup.bat 拷贝如下内容并运行(win8下要以管理员运行,win+x,a)
::创建必要文件路径
mkdir "d:\mongo"
mkdir "D:\mongo\data"
mkdir "D:\mongo\data\log"
::等待手动把bin文件拷贝到d:\mongo
echo 手动把bin文件夹所有东西拷贝到d:\mongo
pause
::把日志路径写到mongod.cfg
echo logpath=D:\mongo\data\log\mongod.log> "D:\mongo\mongod.cfg"
::把数据库路径写到mongod.cfg
echo dbpath=D:\mongo\data>> "D:\mongo\mongod.cfg"
::安装windows服务,并把服务设为自动启动
sc.exe create MongoDB binPath= "\"D:\mongo\bin\mongod.exe\" --service --config=\"D:\mongo\mongod.cfg\"" DisplayName= "MongoDB 2.6 Standard" start= "auto"
::启动windows服务
net start MongoDB
- 手动把bin文件夹所有东西拷贝到d:\mongo,然后选中刚才打开的bat文件,按任意键安装完成
- 可以用命令行或在服务管理里关闭或启动服务
-
使用mongo shell 关闭 命令如下 use admin db.shutdownServer();
-
使用kill -2 PID 关闭, Mac下查看mongo PID : ps aux | grep mongod
启动
sudo service mongod start
停止
sudo service mongod stop
修改配置文件
sudo vi /etc/mongodb.conf
配置文件 mongodb.conf 中加入 以下配置用来验证
# auth
auth = true # true or false. Whether or not authentication is required.
NODE_ENV=production pm2 start app.js
pm2 list 查看进程 pm2 logs 查看logs
pm2 stop <app_name|id|all> pm2 restart <app_name|id|all> pm2 delete <app_name|id|all>
pm2 monit 监控
pm2 desc 0 查看pm2环境变量
pm2的logs的存放路径在当前linux用户下的目录里面
error log path | /home/hcd/.pm2/logs/app-err-0.log |
---|---|
out log path | /home/hcd/.pm2/logs/app-out-0.log |
pid path | /home/hcd/.pm2/pids/app-0.pid |
使用 linux nano 编辑器查看log文件
Port 80 What I do on my cloud instances is I redirect port 80 to port 3000 with this command:
sudo iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3000 Then I launch my Node.js on port 3000. Requests to port 80 will get mapped to port 3000.
You should also edit your /etc/rc.local file and add that line minus the sudo. That will add the redirect when the machine boots up. You don't need sudo in /etc/rc.local because the commands there are run as root when the system boots.
Logs Use the forever module to launch your Node.js with. It will make sure that it restarts if it ever crashes and it will redirect console logs to a file.
Launch on Boot Add your Node.js start script to the file you edited for port redirection, /etc/rc.local. That will run your Node.js launch script when the system starts.
Digital Ocean & other VPS This not only applies to Linode, but Digital Ocean, AWS EC2 and other VPS providers as well. However, on RedHat based systems /etc/rc.local is /ect/rc.d/local.
通常使用7-1模式的结构:7个文件夹,1个文件。基本上,你需要将所有的部件放进7个不同的文件夹和一个位于根目录的文件(通常命名为 main.scss)中——这个文件编译时会引用所有文件夹而形成一个CSS样式表。
sass/ | |– base/ | |– _reset.scss # Reset/normalize | |– _typography.scss # Typography rules | ... # Etc… | |– components/ | |– _buttons.scss # Buttons | |– _carousel.scss # Carousel | |– _cover.scss # Cover | |– _dropdown.scss # Dropdown | ... # Etc… | |– layout/ | |– _navigation.scss # Navigation | |– _grid.scss # Grid system | |– _header.scss # Header | |– _footer.scss # Footer | |– _sidebar.scss # Sidebar | |– _forms.scss # Forms | ... # Etc… | |– pages/ | |– _home.scss # Home specific styles | |– _contact.scss # Contact specific styles | ... # Etc… | |– themes/ | |– _theme.scss # Default theme | |– _admin.scss # Admin theme | ... # Etc… | |– utils/ | |– _variables.scss # Sass Variables | |– _functions.scss # Sass Functions | |– _mixins.scss # Sass Mixins | |– _helpers.scss # Class & placeholders helpers | |– vendors/ | |– _bootstrap.scss # Bootstrap | |– _jquery-ui.scss # jQuery UI | ... # Etc… | | `– main.scss # primary Sass file
##Delphi 代码说明# ##Directory layout##
trunk
├── AdminCockpit
│ ├── MA0\ Brands\ Market\ Studies.INC ------> Organize reports&charts based on result
│ ├── MA0\ Companies\ Market\ Studies.INC
│ ├── MA0\ SKUs\ Market\ Studies.INC
│ ├── MA0_Brands_PerceptionMaps.pas
│ ├── MA0_Brands_Profiles.pas
│ ├── MA0_Brands_ProfitabilityEvolution.pas
│ ├── MA0_Companies_PerceptionMaps.pas
│ ├── MA0_Companies_Profiles.pas
│ ├── MA0_Companies_ProfitabilityEvolution.pas
│ ├── MA0_CompetitiveIntelligence.pas
│ ├── MA0_ConsumersSurvey.pas
│ ├── MA0_FinalScores.dfm
│ ├── MA0_FinalScores.pas
│ ├── MA0_FinancialReports.pas
│ ├── MA0_FinancialReports_TN.pas
│ ├── MA0_MarketSurveys.pas
│ ├── MA0_SKUs_PerceptionMaps.pas
│ ├── MA0_SKUs_Profiles.pas
│ ├── MA0_SKUs_ProfitabilityEvolution.pas
│ ├── MA0_Segments_PerceptionMaps.pas
│ └── uAdminUtilities.pas ------> InitializeFilesAndRun : a example for running [I]
├── Common
│ ├── HCD\ Viewer\ Data\ Structure.INC ------> Data structure for viewer
│ ├── HCD_SystemDefinitions.pas ------> Global Constants #1
│ ├── MA0\ Files\ Names.INC ------> Binary constant file names
│ ├── MA0\ Global\ Constants.INC ------> Global Constants #2
│ ├── MA0\ Global\ Declared\ Constants\ and\ Arrays.INC ------> Global Constants #3
│ ├── MA0\ Global\ Types.INC ------> Global Type (Result&Decision)
│ ├── MA0\ Global\ Variables.INC ------> Gloabl variables (useless)
│ ├── MA0\ String\ IDs.INC ------> String IDs (useless)
│ ├── MA0_AdministratorImportedElements.pas ------> Loading DLL [I][K] in dynamic way
│ ├── MA0_ImportedElements.pas ------> using CommonFunctions.DLL
│ ├── MA0_Indices.pas ------> calculate Brand/SKU idx
│ ├── MA0_SharedElements.pas ------> Loading result of module [E][P]
│ ├── MA0_StocksSynthesis.pas ------> stocks synthesis (useless)
│ ├── MA0_UnitCostPrice.pas ------> unitCost calculation function
│ └── uDecisionFileIO.pas ------> Deicision Binary I/O
├── Data\ Viewer
├── Decisions
├── Execs
├── Exogenous
├── Initialisation
├── Kernel
├── Parameters
└── ...
##Marksimos reports implementation : where to find related field?##
Company status:
trunk/AdminCockpit/MA0_Companies_Profiles.pas
trunk/AdminCockpit/MA0_Brands_Profiles.pas
trunk/AdminCockpit/MA0_SKUs_Profiles.pas
Financial data -> Financial report:
trunk/AdminiCockpit/MA0_FinancialReports.pas
trunk/AdminiCockpit/MA0_FinancialReports_TN.pas
Financial data -> Profitability Evolution:
trunk/AdminCockpit/MA0_Companies_ProfitabilityEvolution.pas
trunk/AdminCockpit/MA0_Brands_ProfitabilityEvolution.pas
trunk/AdminCockpit/MA0_SKUs_ProfitabilityEvolution.pas
Segment distribution:
trunk/AdminCockpit/MA0_ConsumerSurvey.pas
Competitor info -> Competitor intelligence
trunk/AdminCockpit/MA0_CompetitveIntelligence.pas
Competitor info -> Market Trends
trunk/AdminCockpit/MA0_MarketSurveys.pas
trunk/AdminCockpit/MA0 Companies Market Studies.INC
trunk/AdminCockpit/MA0 Brands Market Studies.INC
trunk/AdminCockpit/MA0 SKUs Market Studies.INC
##Marksimos decision module implementation : where to find related field?##
Portfolio structure
trunk/Decisions/uPortfoliostructure.pas
SKU info pop window
trunk/Decisions/uSKUInfoMain.pas
Spending Info window
trunk/Decisions/uFromSpendingVersusBudget/pas
Research development reference window
trunk/Decisions/uFormResearchDev.pas
trunk/Decisions/uFormInvestmentRD.pas
Data input validation
uFormBrandDecision.pas