Skip to main content
Version: 1.5

Migrating

Automatic

Create a new backend by clicking on the plus. Then click on the code button in the right top corner and click on the submit button in the right bottom corner. Open the website again to copy the new code. Repeat this steps with the course and coursepart files.

Manually

note

It's recommend to use the automatic method.

Add "api-version": 9 to the main, course and course part.

Migrating to 1.4

Change this old code:

<course>/config.json
{
"author": "CodeDoctorDE",
"author_url": "https://github.com/CodeDoctorDE",
"author_avatar": "https://avatars1.githubusercontent.com/u/20452814?v=4",
}

To this:

<course>/config.json
{
"author": {
"name": "CodeDoctorDE",
"url": "https://github.com/CodeDoctorDE",
"avatar": "https://avatars1.githubusercontent.com/u/20452814?v=4",
}
}