You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tech-interview-handbook/apps/website
Yangshun 37d533e4de
Remove app.techinterviewhandbook.org mentions
1 day ago
..
blog [repo] move from Prettier to Oxfmt 1 day ago
contents Remove app.techinterviewhandbook.org mentions 1 day ago
experimental [website] misc: delete redundant files 1 day ago
functions/grind75 web: point Grind 75 to Cloudflare version 2 years ago
src Remove app.techinterviewhandbook.org mentions 1 day ago
static seo: fix page has broken image issue (#706) 9 months ago
.gitignore web: add function to redirect Grind 75 path 2 years ago
.npmrc web: fix build for pnpm 2 years ago
README.md Migrate workspace to Vite+ 1 day ago
docusaurus.config.js [repo] move to Oxlint 1 day ago
package.json Migrate workspace to Vite+ 1 day ago
sidebars.js contents: add additional behavioral interview content (#717) 7 months ago

README.md

Website

This website is built using Docusaurus 2, a modern static website generator. It is part of the repository's Vite+ monorepo setup.

Installation

Vite+ manages installs through the repository's declared package manager. At the root of the repository, run vp install to install the monorepo dependencies.

$ vp install

Local Development

Also at the root of the repository, run:

$ vp run dev

This command starts a local development server and opens up a browser window. Most changes made to JavaScript and Markdown files will be reflected instantly without having to restart the server.

Build

From the repository root, run:

$ vp run --filter @tih/website build

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

$ cd apps/website
$ GIT_USER=<Your GitHub username> USE_SSH=1 vp run deploy

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.