CoolFace
Apppublic

Mythus/Staging

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
README.md42 linesDownload Raw Back to docs
1# Website2 3This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.4 5### Installation6 7```8$ yarn9```10 11### Local Development12 13```14$ yarn start15```16 17This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.18 19### Build20 21```22$ yarn build23```24 25This command generates static content into the `build` directory and can be served using any static contents hosting service.26 27### Deployment28 29Using SSH:30 31```32$ USE_SSH=true yarn deploy33```34 35Not using SSH:36 37```38$ GIT_USER=<Your GitHub username> yarn deploy39```40 41If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.42