How to create a new course on local FreeCodeCamp

I’m trying to create a new JavaScript course on my local FreeCodeCamp instance. I followed the guide for working on projects and successfully created two new courses, which are visible on port 3300. However, I’m unable to view these courses on localhost:8000.

Could anyone help me understand how to make the courses visible on localhost:8000?

Additionally, is there a way to create a custom superblock and course according to my needs on local FreeCodeCamp?

you can create what you want in your local instance.

Reasons for which it may not be visible: did you run pnpm run clean-and-develop after creating the course? does the course have the isUpcomingChange? remove the flag from the course, or change the .env variable to show those courses.
Depending on which superblock you created the course into there is also the SHOW_NEW_CURRICULUM flag to change to true in .env (after changing the variables you need to run clean-and-develop)

for the superblock, take one of the existing ones as example and search anywhere it is mentioned, and copy it for a new superblock

1 Like

Thank you for your help :slight_smile: it’s working now.