This file contains instructions for setting up a project based on new-repo.
After you have completed these instructions, you should do git rm SETUP-DELETEME.md
Clone it as:
$ git clone https://github.com/Agoric/new-repo MyPackageName
$ cd MyPackageName
$ git remote rename origin new-repo
After creating Agoric/MyPackageName, you should run something like:
$ git remote add origin [email protected]:Agoric/MyPackageName
$ git push -u origin master
The package.json is already set up with organization-prefixed details. You just need to substitute your package name (usually dash-separated) and your repository name (usually capitalized words concatenated):
sed -i.bak -e 's/@PACKAGE@/my-package-name/g; s/@REPO@/MyPackageName/g' package.json
rm package.json.bak
You will definitely want to edit the README.md
file, then begin committing and pushing as usual.
- Go to https://circleci.com/gh/Agoric
- Click the "Add Project" button to the left
- Make sure that your repo has the
.circleci/config.yml
file that new-repo has