Page 1

Quickstart

Backend

Deployment & DevOps

Architecture & Planning

Self host:

hugging face: new space -> Docker Blank

(serveurs off en inactivité)

Create Dockerfile with EXPOSE 7860 (make sure your app uses port 7860) https://<username>-<space_name>.hf.space/arrow-up-right

self-host https://github.com/antonreshetov/mysigmailarrow-up-right (pas de limitations: changements de couleurs...):

docker run --rm -it -p 5173:5173 node:lts-alpine sh -c "apk add git bash curl && curl -fsSL https://bun.com/install | bash && export BUN_INSTALL=\$HOME/.bun && export PATH=\$BUN_INSTALL/bin:\$PATH && git clone https://github.com/antonreshetov/mysigmail && cd mysigmail && bun install && npx vite --host"

QBittorent-nox (qbittorrent web client) https://github.com/qbittorrent/docker-qbittorrent-noxarrow-up-right:

services:
  qbittorrent-nox:
    image: qbittorrentofficial/qbittorrent-nox:latest
    environment:
      - QBT_WEBUI_PORT=8091
      - QBT_TORRENTING_PORT=6881
    ports:
      - 8091:8091
      - 6881:6881/tcp
      - 6881:6881/udp
    volumes:
      - qbittorrent-config:/config
      - qbittorrent-downloads:/downloads
    restart: unless-stopped

volumes:
  qbittorrent-config:
  qbittorrent-downloads:

New group: Network (move Self host in Network)

Last updated