This is a template repository for GitHub that guides you through creating a new package using github and the raco pkg new
command.
Steps:
- go to the the repo homepage and click the green
Use this template
button - make a local copy of the template on your PC
- set your PATH environment variable to the racket/bin
- open command prompt
- type
raco pkg new your-package-name-name-here
raco pkg new
generates
- license files
- Racket
.gitignore
- main.rkt
- scribble files
tasks
- update this file
README.md
- update
.travis.yml
- update licence files
LICENSE-MIT
andLICENSE-APACHE
with name and year, or change to your desired licence. - update
info.rkt
- update
scribblings/racket-package.scrbl
- update
main.rkt
to get coding.
For more details see Tutorial: Creating a Package
To install (from within the package directory):
$ raco pkg install
To install (once uploaded to pkgs.racket-lang.org):
$ raco pkg install <<name>>
To uninstall:
$ raco pkg remove <<name>>
;; To view documentation:
$ raco docs <<name>>
See the current version of the racket style guide here: http://docs.racket-lang.org/style/index.html