新しい流星プロジェクトがあります。.meteor
dirには、構成ファイル(必要)と一時ファイル(不要)の組み合わせがあると思います。
それで、あなたの中には何があります.gitignore
か?
バージョン管理から除外したい唯一のディレクトリはです.meteor/local
。
Meteorは自動的に権利.meteor
を作成しますが、.meteor/.gitignore
何もする必要はありません。
パブリックリポジトリにプッシュする場合は、構成設定ファイルをそこに配置することをお勧めします。
暗号化キーやsmtp、twitter、facebookなどのサービスのさまざまなパスワードなどのセキュリティ上重要なデータ構成設定をconfig.jsに保存し、それを.gitignoreまたはinfo/excludeファイルに配置します。公開リポジトリに入れたくないもの。
.gitignoreについて考慮すべき追加の提案
gitignoreには次のものも含まれている必要があります。
public / node_modules
そして、ノードモジュールの依存関係のインストールを管理する適切に作成されたpackage.jsonでこれを補完します。
これにより、新しい場所にインストールするときにnpmのインストールが必要になります。
この記事によるとsettings.json
、特にAPIキーを含めるための環境固有の情報がある場合は、を無視する必要があります。
meteor 1.3では、も無視したいと思いますnode_modules
。npmを介してライブラリをインストールできるため、すべてのライブラリをgitに追加する理由はありません。node_modules
フォルダーはアプリよりも大きい可能性があります(フォルダーを除く.meteor/local
)
Meteorは、デフォルト.gitignore
で.meteor
ディレクトリにを作成します。
ただし、プロジェクトで.gitignore
は機密データの構成ファイルとを除外する必要がありますnode_modules
。
使用する場合
.idea
フォルダを無視しますsublime-project
sublime-workspace
あなたがmacユーザーなら無視できますDS_Store
npm
また、npmを使用する場合、WindowsとMacユーザーの両方が同じプロジェクトで作業している場合は原因を無視します。同じnpmバージョンはMacとWindowsで異なるため、エラーが表示されます。
これが、MupxでデプロイされたWebstormとMeteor1.4で使用するものです。
# Meteor files to ignore now handled by .ignore file within .Meteor folder automatically
# settings file to ignore to protect API keys
settings.json
# MUP / MUPX file to ignore to protect server passwords and sensitive info.
mup.json
# npm package files to ignore
node?modules/
npm-debug.log
# Webstorm IDE files to ignore
.idea/*
# Typing type definition files to ignore. Webstorm uses type definitions for autocomplete even without typescript
typings/*
このgitignoreを使用して、システムファイルなどに沿って多くのIDEとMeteorを取り込みます。
### WebStorm ###
.idea/
### OSX ###
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
### Windows ###
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows shortcuts
*.lnk
### Linux ###
*~
# KDE directory preferences
.directory
### SublimeText ###
# cache files for sublime text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
# workspace files are user-specific
*.sublime-workspace
# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project
# sftp configuration file
sftp-config.json
### Node/NPM ###
node_modules
npm-debug.log
### Development ###
dump
mochawesome-reports
ngrok
ルートディレクトリにあるnode_modulesという名前のインストール済みパッケージディレクトリを配置する必要があります。プロジェクトをコミットしている間は無視されます。また、プロダクトマネージャーは、package.jsonを使用してサーバーにパッケージを簡単にインストールできます。
### MeteorJS ###
# default meteor build and local packages
.meteor/local
# meteor settings file
settings.json
# meteor build output files
*.tar.gz
# general swp files from vim
*.swp
# End of https://www.gitignore.io/api/meteorjs
これは、Intellijで使用する.gitignoreファイルです。
node_modules/
.meteor/local/*
.idea/
npm-debug.log
packages/*/.npm/
このサイトhttps://www.gitignore.io/を使用して、任意のプロジェクトの.gitignoreファイルを生成できます。使用する技術とIDEを挿入するだけです。
.meteor / localは、バージョン管理から欠落させたい唯一のものです。
Meteorは、ニーズに合った.gitignoreファイルを自動的に生成します。
パブリックリポジトリの場合は、「settings-development.json」またはAWSAPIキーなどの公開したくない情報を含むその他のJSONファイルを含めることをお勧めします。
ただし、Bitbucketやその他のいくつかは、ニーズに合う無料のプライベートリポジトリを提供しています。