Home
Softono

ManageMeals

Open source Docker
60
Stars
5
Forks
1
Issues
1
Watchers
2 months
Last Commit

 About ManageMeals

Manage recipes, import recipes by URL and organize them without any ads or unnecessary text.

Platforms

Web Self-hosted Docker

Languages

Docker

Need Help Installing ManageMeals?

We provide expert installation service for this software. Our team will install, configure, and secure ManageMeals on your server. plans start at just $30.

ManageMeals

View on GitHub

ManageMeals Web

This is the ManageMeals frontend, what you see at https://managemeals.com. It's a SvelteKit app.

Development

The backend needs to be running. Then setup the environment variables:

cp .env.example .env

After that, the app can be started:

npm install

npm run dev

Production

To build the app:

npm run build

Though for production that's done in a Dockerfile.

Expose ports by creating a file called docker-compose.override.yaml with the contents:

services:
  manage-meals-web-01:
    ports:
      - 8301:3000

  manage-meals-web-02:
    ports:
      - 8302:3000

  manage-meals-web-lb:
    ports:
      - 8309:80

Then start it up using docker-compose:

cp .env.docker.example .env.docker

make build

make upd