Skip to content

Creating a Course

Ryan Holbrook edited this page Oct 6, 2020 · 15 revisions

Let's say we're going to create a new course on Kaggle Learn called *Data Science

Notebooks

  1. On the command line, navigate to the learntools/notebooks/ directory.
  2. Create a new branch on master with a name like ds-course. Be sure to check that there isn't already a branch with that name.
  3. Decide on a "track name" like data_science. This will be the name of the directory where your course files will exist. Check that there isn't already a directory with that name.
  4. There should be a Bash script called new_track.sh. Run /.new_track.sh data_science.
  5. Stage the new files: git add data_science.
  6. Commit the changes: git commit -m "Create track ds-course."
  7. Create pull request on GitHub named [Data Science] New course.

Checking Code

  1. Navigate to learntools/learntools/.
  2. TODO
Clone this wiki locally