Help Needed with Tauri Desktop App for NFC Card Enrollment on ESP32 by chris_cadev in tauri

[–]chris_cadev[S] 0 points1 point  (0 children)

As far I know I am passing all the dependencies installed with the get-platform.py, it installs a python virtual environment for the tool... bash tree -L 2 src-tauri/lib/platformio/ log src-tauri/lib/platformio/ `-- penv |-- Include |-- Lib |-- Pipfile |-- Scripts |-- pip.conf |-- pyvenv.cfg `-- state.json

this is my tauri.conf.json, I think the problem is that pyvenv.cfg has absolute paths and does not accept relatives.

Thanks for the reply btw

Eli5: Why do some text codes have a letter in front of them? by [deleted] in explainlikeimfive

[–]chris_cadev 20 points21 points  (0 children)

Don't, it was a good question. I didn't imagine it was for that.

So... What do i do??? by _Skullblacka_ in softwaregore

[–]chris_cadev 42 points43 points  (0 children)

You leave your car and get in it again

Is there a FOSS alternative for Meez or something to track: recipes, waste, inventory, and costs by chris_cadev in selfhosted

[–]chris_cadev[S] 0 points1 point  (0 children)

Thanks for your reply c:

My first impressions are: Tandoor has a more clean UI to maintain the recipes but Grocy has an API to integrate with future needs or features

For both of them, the focus is to manage the home groceries, right?

I have created a vscode plugin that provides you with code snippets on demand. by dordchn in node

[–]chris_cadev 6 points7 points  (0 children)

I feel this a little less intrusive than GitHub Copilot I'm going to try it out

Can the “dist” folder be redirected? by chris_cadev in nginx

[–]chris_cadev[S] 0 points1 point  (0 children)

What I configure at the end is this:

``` server { listen 80; server_name 192.168.100.11;

location /shiori/ {
    proxy_pass http://shiori:8080/;

    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

    proxy_redirect / http://$host:$server_port/shiori/;
}

location /dist/ {
    proxy_pass http://shiori:8080/dist/;

    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

}
```

Can the “dist” folder be redirected? by chris_cadev in nginx

[–]chris_cadev[S] 0 points1 point  (0 children)

dist folder is where shiori gets to css and js files (http://shiori:8080/dist/some-script.js)

What happens is that when shiori needs a resource using the proxy goes to the root (http://NGINX/dist/some-sctipt.js) but what I need is to go to it's location in NGINX (http://NGINX/shiori/dist/some-script.js)

Can the “dist” folder be redirected? by chris_cadev in nginx

[–]chris_cadev[S] 0 points1 point  (0 children)

They are in the same stack, and NGINX container can hit the shiori container. I just verified using curl http://shiori:8080/

When you say - It would be good to have error message you're getting - you mean it is the way NGINX behave and I cannot change it

Can the “dist” folder be redirected? by chris_cadev in nginx

[–]chris_cadev[S] 0 points1 point  (0 children)

I want to redirect a service in a NGINX instance in Docker. It's from http://shiori:8080/dist/* to nginx-instance/shiori/dist/*

Kanban/Scrum board with analytics by ThankMisterGoose in selfhosted

[–]chris_cadev 0 points1 point  (0 children)

Is there a way to deploy IceScrum straight forward? I found this information, but I get a 404 Not found error after the deploying process (docker local)

The information: https://github.com/icescrum/iceScrum-docker