Windows notes

This commit is contained in:
Imbus 2024-02-13 11:30:41 +01:00
parent 4450bf6512
commit 2418e03f8a

View file

@ -48,9 +48,18 @@ sudo pacman -S make go nodejs npm podman just
brew install make go nodejs npm podman just brew install make go nodejs npm podman just
``` ```
Further instructions will be provided for native Windows if there is demand for it. [Windows](https://www.microsoft.com/en-us/windows):
[Windows](https://www.microsoft.com/en-us/windows): (Requires [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install)) (Untested) Unfortunately, [Windows Subsystem for Linux (WSL)](https://docs.microsoft.com/en-us/windows/wsl/install) is required for the build process. Running any form of containerized workload on windows is currently unsupported. More info [here](https://podman.io/docs/installation#windows). From my understanding, WSL also requires virtualization extensions to be enabled in the BIOS, which is not always the case for all users.
```bash It is possible to run the code on Windows, but this will be without the use of containers or any other build tools that are not available on Windows.
sudo apt install -y make golang nodejs podman just You will also eventually need to install the database server, which will not be containerized.
```
My recommendation would be to make WSL your primary development environment if you are on Windows. This will drop you into an Ubuntu environment, in which you can follow the instructions above.
If you're still dead set on using windows ou will need the following:
- [Go](https://go.dev/)
- [Node & npm](https://nodejs.org/en/)
- [MariaDB](https://mariadb.org/) / [MySQL](https://www.mysql.com/) / [PostgreSQL](https://www.postgresql.org/) (This is undecided so far)
With some grit and determination, you can get it to work. It's not recommended, but I (Imbus) will try to help you.