Skip to content

Instantly share code, notes, and snippets.

@StorytellerCZ
Last active July 16, 2017 17:32
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StorytellerCZ/a9f0ac441e2c4c3b15744afbf39b671e to your computer and use it in GitHub Desktop.
Save StorytellerCZ/a9f0ac441e2c4c3b15744afbf39b671e to your computer and use it in GitHub Desktop.
Basic setup for Meteor Socialize development
#!/bin/sh
# create bare Meteor app
meteor create socialize-dev --bare
cd socialize-dev
# create packages folder
mkdir packages
cd packages
# clone all the socialize packages on dev
git clone git@github.com:copleykj/socialize-base-model.git -b devel
git clone git@github.com:copleykj/socialize-commentable.git -b devel
# git clone git@github.com:copleykj/socialize-follow.git
git clone git@github.com:copleykj/socialize-friendships.git -b devel
git clone git@github.com:copleykj/socialize-likeable.git -b devel
git clone git@github.com:copleykj/socialize-linkable-model.git -b devel
git clone git@github.com:copleykj/socialize-messaging.git -b devel
git clone git@github.com:copleykj/socialize-postable.git -b devel
git clone git@github.com:copleykj/socialize-requestable.git -b devel
git clone git@github.com:copleykj/socialize-server-presence.git -b devel
git clone git@github.com:copleykj/socialize-server-time.git -b devel
git clone git@github.com:copleykj/socialize-user-blocking.git -b devel
git clone git@github.com:copleykj/socialize-user-model.git -b devel
git clone git@github.com:copleykj/socialize-user-presence.git -b devel
git clone git@github.com:copleykj/socialize-user-profile.git -b devel
# git clone git@github.com:copleykj/socialize-voteable.git -b devel
# add the socialize packages
cd ../
meteor add socialize:base-model socialize:commentable socialize:friendships socialize:likeable socialize:linkable-model socialize:messaging socialize:postable socialize:requestable socialize:server-presence socialize:server-time socialize:user-blocking socialize:user-model socialize:user-presence socialize:user-profile
# socialize:follow socialize:voteable
meteor npm install --save simpl-schema
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment