Skip to main content
Aaron
a humble learner
View all authors

Coucou !

· One min read
Aaron
a humble learner

Docusaurus is a fantastic tool to build a document site.

tip

Use Docusaurus to quickly deploy a website like this

I used the following steps to deploy this notebook site to keep track of French learning.

Create a docusaurus app

npx create-docusaurus@latest my-website classic
cd my-website
npx docusaurus start

Push to GitHub

Create a new repo on GitHub.

git init
git add .
git commit -m "my commit"
git remote set-url origin git@github.com:username/repo.git
git push origin main

Deployment

Create an account on Netlify (login with GitHub) and follow the instructions to deploy the repo from your GitHub account. This repo can even be a private repo.

More references