Skip to content

v1.1.0

Latest

Choose a tag to compare

@n0rdy n0rdy released this 01 Sep 18:00
· 4 commits to main since this release
6431fc7

v1.1.0

Changes since v1.0.0

  • 6431fc7 Merge pull request #71 from n0rdy/small-fixes
  • acbbb50 Refactor ClientIP function to improve handling of X-Forwarded-For header
  • a8e43f1 Merge pull request #70 from n0rdy/fixing-vulnerabilities
  • 24c5b4d Fixed a bunch of vulnerabilities found by Fable audit
  • e6159f6 Merge pull request #69 from n0rdy/go-version-bump
  • b54b480 Removed Google UUID lib dependency in favor of Go 1.27 one
  • ef35e16 Bumped Go to 1.27 in all the places across the app
  • 3be14bc Bumped Go version to 1.27
  • 32560fc Merge pull request #68 from n0rdy/dependabot/npm_and_yarn/ui/ui-assets-262d4abeed
  • ceb5a6a Bump daisyui from 5.7.19 to 5.7.22 in /ui in the ui-assets group
  • 281baa4 /Users/n0rdy/IdeaProjects/do-not-panic/pooml
  • 117d9f1 Merge pull request #67 from n0rdy/dependabot/npm_and_yarn/ui/ui-assets-664dac45c5
  • 306c04f Rebuild UI assets for daisyui 5.7.19 and improve stale-asset diagnostics
  • 3a9636b Merge pull request #66 from n0rdy/dependabot/go_modules/gomod-22ec72e47b
  • 429e45a Bump daisyui from 5.7.17 to 5.7.19 in /ui in the ui-assets group
  • 56cd274 Bump the gomod group with 2 updates

Installation

Binary releases (Linux only):

# Download for your architecture from the assets below
# Example for Linux x86_64:
curl -L https://github.com/n0rdy/forq/releases/download/v1.1.0/forq_Linux_x86_64.tar.gz | tar -xz
chmod +x forq-linux-amd64 && sudo mv forq-linux-amd64 /usr/local/bin/forq

# Example for Linux ARM64:
curl -L https://github.com/n0rdy/forq/releases/download/v1.1.0/forq_Linux_arm64.tar.gz | tar -xz
chmod +x forq-linux-arm64 && sudo mv forq-linux-arm64 /usr/local/bin/forq

Other platforms:

# macOS/Windows users can build from source or use Docker
git clone https://github.com/n0rdy/forq && cd forq && go build

Docker:

docker run -d \
  --name forq \
  --restart unless-stopped \
  -e FORQ_AUTH_SECRET=your-auth-secret-min-32-chars-long \
  -e FORQ_DB_PATH=/app/data/forq/forq.db \
  -e FORQ_API_ADDR=0.0.0.0:8080 \
  -e FORQ_UI_ADDR=0.0.0.0:8081 \
  -p 8080:8080 \
  -p 8081:8081 \
  -v ~/forq-data:/app/data/forq \
  mykonordy/forq:1.1.0