Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

添加测试数据 #839

Closed
homeeecode3 opened this issue May 31, 2024 · 2 comments
Closed

添加测试数据 #839

homeeecode3 opened this issue May 31, 2024 · 2 comments
Labels
bug Something isn't working

Comments

@homeeecode3
Copy link

使用官方网站:https://gorse.io/ 提供的docker-compose部署:

version: "3"
services:
  redis:
    image: redis
    restart: unless-stopped
    ports:
      - 6379:6379

  mysql:
    image: mysql/mysql-server
    restart: unless-stopped
    ports:
      - 3306:3306
    environment:
      MYSQL_ROOT_PASSWORD: root_pass
      MYSQL_DATABASE: gorse
      MYSQL_USER: gorse
      MYSQL_PASSWORD: gorse_pass

  gorse:
    image: zhenghaoz/gorse-in-one
    restart: unless-stopped
    ports:
      - 8086:8086   # gRPC port
      - 8088:8088   # HTTP port
    environment:
      # Use Redis as cache storage backend.
      GORSE_CACHE_STORE: redis://redis:6379
      # Use MySQL as data storage backend.
      GORSE_DATA_STORE: mysql://gorse:gorse_pass@tcp(mysql:3306)/gorse?parseTime=true
    command: >
      -c /etc/gorse/config.toml
      --log-path /var/log/gorse/master.log
      --cache-path /var/lib/gorse/master_cache.data
    volumes:
      # Mount the configuration file.
      - ./config.toml:/etc/gorse/config.toml
    depends_on:
      - redis
      - mysql

启动后也能正常进入面板,但是没有测试数据。
项目是否还在维护??下载测试数据的SQL文件的时候无法下载,无论是在中国还是泰国,状态码为526,下载命令:

wget https://cdn.gorse.io/example/github.sql

在官方网站跳转https://gitrec.gorse.io/时也无法访问,也是526

@homeeecode3 homeeecode3 added the bug Something isn't working label May 31, 2024
@zhenghaoz
Copy link
Collaborator

  1. DEMO数据已经恢复:https://cdn.gorse.io/example/github.sql
  2. GitRec服务器维护费用无力承担,正在寻找更便宜的方案恢复

@Issues-translate-bot
Copy link

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


  1. DEMO data has been restored: https://cdn.gorse.io/example/github.sql
  2. GitRec server maintenance costs are unaffordable and we are looking for a cheaper solution to restore it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants