Rank 2: Process
Im running my appwrite instance locally for development purpuses, and whenever I do a request (e.g. creating an account) I get 404. Why is that?
`
client = Client()
.setEndpoint("https://172.20.163.38:80/v1") <-- local ip of my WSL2
.setProject("12345...")
.setSelfSigned(status: true);
var account = Account(client);
account.create(
userId: ID.unique(),
email: "abc@mail.de",
password: "fake_password",
);`
Im running appwrite inside WSL2, might that cause problems?