-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from zzlk/main
Fix building on WSL2
- Loading branch information
Showing
5 changed files
with
31 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
To one the runbox you need two terminals. | ||
General: | ||
|
||
- This repo uses submodules. Make sure to clone with --recurse-submodules | ||
- Recommended plugins: | ||
- rust analyzer | ||
- prettier | ||
|
||
Linux: | ||
|
||
- Rust needs to be installed. | ||
|
||
Windows: | ||
|
||
- WSL2 is required to build on windows. https://learn.microsoft.com/en-us/windows/wsl/install | ||
- Make sure Rust is installed. https://www.rust-lang.org/tools/install | ||
- pkg-config is needed. `sudo apt-get install pkg-config` | ||
- openssl libraries are needed. `sudo apt-get install libssl-dev` | ||
- `sudo apt-get install build-essential` | ||
- Watch out for windows line endings, various libraries like zlib will fail to build with windows line endings. | ||
|
||
OSX: | ||
|
||
- Good luck. | ||
|
||
To one the runbox you need two terminals: | ||
|
||
- use `make run` to run the backend + database | ||
- use `make dev` to run the front-end |
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
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