contain-rs / discuss

A center for discussion and planning of the contain-rs organization.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Note to Self: How to set up a new repo

FlashCat opened this issue · comments

Setting up the files:

cargo new $FOO
cd $FOO
cp ../vec-map/.travis.yml ./
cp ../vec-map/LICENSE-* ./
cp ../vec-map/README.md ./
cp ../vec-map/deploy-docs.sh ./
cp ../vec-map/Cargo.toml ./

Change content of README.md and Cargo.toml only


Setting up the docs:

git checkout --orphan gh-pages
git rm -rf '*'
git commit --allow-empty -m 'create `gh-pages` branch'
git push origin gh-pages
git checkout master

Make a token with repo, user, gist, write:repo_hook (some of these are probably unecessary) and set it as the GH_TOKEN env variable in travis.