新しい流星プロジェクトがあります。 .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
を除外する必要があります。
この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
使用する場合
.idea
foldersublime-project
sublime-workspace
macユーザーの場合、DS_Store
を無視できます
また、npmを使用すると、WindowsとMacの両方のユーザーが同じプロジェクトで作業する場合にnpm
の原因となります。同じnpmバージョンはMacとWindowsで異なるため、エラーが表示されます。
これが、MupxでデプロイされたWebstormおよびMeteor 1.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/*
### 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
ルートディレクトリにあるnode_modulesという名前のインストール済みパッケージディレクトリを配置する必要があります。プロジェクトをコミットしている間は無視されます。また、プロダクトマネージャーはpackage.jsonを使用してサーバーにパッケージを簡単にインストールできます。
これは、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」またはAWS APIキーなどの公開したくない情報を含むその他のJSONファイルを含めることができます。
ただし、Bitbucketおよびその他の一部では、ニーズに合った無料のプライベートリポジトリを提供しています。