https://github.com/tradle/community
Tradle Community Documentation
https://github.com/tradle/community
Last synced: 3 months ago
JSON representation
Tradle Community Documentation
- Host: GitHub
- URL: https://github.com/tradle/community
- Owner: tradle
- Created: 2020-10-29T16:49:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-10T08:29:45.000Z (about 4 years ago)
- Last Synced: 2025-10-19T17:39:16.274Z (8 months ago)
- Language: HTML
- Homepage: https://tradle.io/community/docs
- Size: 4.55 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Website
This is our community website for our documentation and it's built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator.
## Installation
To install locally and test static files
```console
mkdir Docusaurus
cd Docusaurus/
npx @docusaurus/init@next init tradle classic
npm run start
```
## Local config
To test this site config, pull the repository and make a change to baseUrl in docusaurus.config.js from '/community/' to '/'
## Local Development
Local build and website test
```console
npm run build
npm run serve
```
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
## Deployment
Change the docusaurus.config.js baseUrl back to '/community/', build again then sync to S3
```console
aws s3 sync ./build s3://tradle.io/community --delete --exclude ".DS_Store"
```