Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 2370b4d0afe0e3e2561ab2b48d714d5e6c72eaf1
  • develop par défaut protégée
  • implement-discord-markdown-update
  • matrix-attachments-order-fix
  • fix-oversized-file-transfer
  • matrix-attachment-order-fix
  • matrix-answer-modified-fix
  • cherry-pick-moise
8 résultats

metrics.ts

Blame
  • Bifurcation depuis ARISE / matrix-appservice-discord
    Le projet source a une visibilité limitée.
    docker-compose.yml 1,23 Kio
    version: '3.7'
    
    services:
        database:
            build: ./neo4j
            environment:
                - NEO4J_AUTH=neo4j/test
            ports:
                - "7474:7474"
                - "7687:7687"
            volumes:
                - ./neo4j/import:/var/lib/neo4j/import
                - ./neo4j/data:/var/lib/neo4j/data
            container_name: neo4j
        redis:
            image: "redis:alpine"
            ports:
                - "6379:6379"
        redis-client:
            build: ./redis
            depends_on:
                -   redis
        sg-backend:
            build: ./sg-backend
            command: sh -c "/wait && uvicorn main:app --reload --host 0.0.0.0"
            environment:
                - FRONTEND_URL="http://localhost"
                - NEO4J_URI=neo4j://database:7687
                - NEO4J_USER=neo4j
                - NEO4J_PASSWORD=test
                - WAIT_HOSTS=database:7474
                - WAIT_HOSTS_TIMEOUT=300
                - WAIT_SLEEP_INTERVAL=10
                - WAIT_HOST_CONNECT_TIMEOUT=30
            depends_on:
                - database
                - redis
            ports:
                - "8000:8000"
        sg-frontend:
            build: ./sg-frontend
            environment:
                - VITE_BACKEND_URL=http://sg-backend:8000
            ports:
                - "4173:4173"
            depends_on:
                - sg-backend