Skip to content

Eigenfocus/eigenfocus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1,793 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Eigenfocus

Self-hosted Project Management tool - without the clutter.
Powerful enough for complex projects. Simple enough to actually use.

Docker Installation | Website | PRO - Live demo




Eigenfocus - FREE EDITION

Eigenfocus

  • Unlimited projects, boards, and issues
  • List and Board views
  • Markdown descriptions and file attachments
  • Labels, comments, and due dates
  • Built-in time tracking with reports
  • Focus Space with timers and ambient sounds
  • Light and Dark themes
If you enjoy Eigenfocus, ⭐️ the repo to follow updates.

When You Need More

Eigenfocus grows with you. Pay once, no subscriptions.

  • Multiple users with permissions
  • Custom statuses and issue types
  • New types of views
  • Project cloning (templates)
  • SSO (Google, Microsoft, GitHub, OIDC)

See all your assigned issues in one centralized place.


Grid View - Visualize work using columns and rows. Handle multiple workflows.


Custom Statuses & Types

      


Installation

If you know someone who might benefit, spread the word.

Docker

docker run \
    --restart unless-stopped \
    -v ./app-data:/eigenfocus-app/app-data \
    -p 3001:3000 \
    -e DEFAULT_HOST_URL=http://localhost:3001 \
    -d \
    eigenfocus/eigenfocus:1.5.0-free

And access it at http://localhost:3001.

Docker Compose

Or using a docker-compose.yml file:

services:
  web:
    image: eigenfocus/eigenfocus:1.5.0-free
    restart: unless-stopped
    volumes:
      - ./app-data:/eigenfocus-app/app-data
    environment:
     - DEFAULT_HOST_URL=http://localhost:3001
    ports:
      - 3001:3000

Then, run it with the CLI:

docker compose up -d

And access it at http://localhost:3001.

Environment Configurations

  • DEFAULT_HOST_URL: URL used to access Eigenfocus
  • FORCE_SSL: Defaults to false. If set to true, all incoming requests that are not HTTPS will be redirected to use HTTPS protocol.
  • ASSUME_SSL_REVERSE_PROXY: Defaults to false. If set to true, all incoming requests will be interpreted as HTTPS. This is useful for cases when you have FORCE_SSL set to true but are behind a reverse proxy that terminates the SSL. This means that our app will be receiving requests via HTTP. In order to avoid an infinite redirect loop to HTTPS you must set ASSUME_SSL_REVERSE_PROXY to true. For more information, check the conversation and changelog on rails/rails#47139.

Optional http basic auth

You can enable HTTP Basic Auth by setting these two env variables:

  • HTTP_AUTH_USER - For the username
  • HTTP_AUTH_PASSWORD - For the password

➜ If you're exposing the service to the internet don't forget to setup a certificate and use HTTPS.

Contact

Feel free to contact us [email protected].

Other

Contributions

Thank you for your interest in contributing to Eigenfocus.

You’re welcome to email us with ideas, suggestions or feedback.

Since Eigenfocus includes a paid version, we don’t accept external pull requests. We believe this keeps expectations clear and fair.

License

Eigenfocus is free to self host and source available under License.