-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start DEVELOPMENT.md for full development instructions
- Loading branch information
Showing
4 changed files
with
48 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Development | ||
|
||
Let's get everything setup to develop on Quadratic! | ||
|
||
- [Development](#development) | ||
- [Install Dependencies](#install-dependencies) | ||
- [Develop on the Frontend](#develop-on-the-frontend) | ||
- [Develop on Quadratic API](#develop-on-quadratic-api) | ||
- [Develop on Quadratic Core](#develop-on-quadratic-core) | ||
- [Develop on Quadratic MultiPlayer](#develop-on-quadratic-multiplayer) | ||
- [Develop on Quadratic Files](#develop-on-quadratic-files) | ||
|
||
|
||
## Install Dependencies | ||
|
||
First, follow the instructions to install: | ||
1. [NVM](https://github.com/nvm-sh/nvm) | ||
1. [rustup](https://www.rust-lang.org/tools/install) | ||
1. [wasm-pack](https://rustwasm.github.io/wasm-pack/installer/) | ||
1. [Docker Desktop](https://docs.docker.com/desktop/) | ||
|
||
Start Docker Desktop after installing. | ||
|
||
```shell | ||
# install node version 18 | ||
nvm install 18 | ||
|
||
#install the WASM toolchain | ||
rustup target add wasm32-unknown-unknown | ||
|
||
# install cargo watch | ||
cargo install cargo-watch | ||
``` | ||
|
||
## Develop on the Frontend | ||
|
||
## Develop on Quadratic API | ||
|
||
## Develop on Quadratic Core | ||
|
||
## Develop on Quadratic MultiPlayer | ||
|
||
## Develop on Quadratic Files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters