Radioactive experiments. Turn back! You will find no API stability here.
There's a frontend, and a backend.
All of the backend code lives within Toolshed, and is written in Deno2.
All of the user-facing frontend code lives within Jumble, and is written with React.
For a more detailed guide, see ./toolshed/README.md.
cd ./toolshed
deno task dev
By default the backend will run at http://localhost:8000
Run the dev server
cd ./jumble
deno task dev
By default, the frontend will run at http://localhost:5173, and it will point to a local backend running at http://localhost:8000.
If you are not actively making updates to the backend, you can also point to the backend running in the cloud, by running the following command:
TOOLSHED_API_URL=https://toolshed.saga-castor.ts.net/ deno task dev