https://store-images.s-microsoft.com/image/apps.52867.b6f6bcb3-46e4-4e5d-b789-5341e7385d04.93ee0b7a-43e6-4c2d-a71d-6054d839c247.70263e07-b45b-4ef7-a774-0254fb01dfce

Foodsoft on Ubuntu 24.04

bởi bCloud LLC

(1 xếp loại)

Version 4.9.1 + Free Support on Ubuntu 24.04

Foodsoft is an open-source, web-based application designed to help food cooperatives, community-supported agriculture (CSA) programs, and local food networks manage orders, memberships, and inventory efficiently. It provides a complete platform for organizing products, member accounts, and deliveries while streamlining administrative tasks.

Features of Foodsoft

  • Manage members, orders, and deliveries for food cooperatives and CSAs.
  • Flexible product catalog with support for multiple locations and variants.
  • Automated order processing, invoicing, and payment tracking.
  • Reporting and analytics tools to track sales, stock, and member activity.
  • Customizable workflows to match cooperative-specific processes.
  • Role-based access control for managing permissions across users and staff.
  • Open-source and extensible, allowing communities to adapt and contribute improvements.

Deployment and Management Commands

Start Foodsoft

$ sudo su
$ mkdir foodsoft
$ cd foodsoft
$ docker-compose up -d
$ docker-compose restart

Reset Admin Password

$ docker exec -it foodsoft_app_1 bash
$ bundle exec rails console

u = User.find_by(email: "admin@foo.test")        #chnge email according to your use
u.password = "newpassword"                             # chnge password according to your use
u.password_confirmation = "newpassword"     
u.save!

Access Web Interface

http://<ip-address>:3000/f

Check Database Credentials

cat /var/food/credentials.txt

Disclaimer

Foodsoft is an open-source project developed and maintained by the community. It is provided under the MIT License and distributed on an "as is" basis, without warranties or conditions of any kind. Users are responsible for validating configuration, security, and operational suitability in their environments.