this post was submitted on 16 Feb 2025
87 points (95.8% liked)

Linux

50215 readers
1582 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I want to develop a game and am considering collaborating with others, potentially even making it open-source.

To make this process smoother, I need to establish an easy-to-replicate development environment—one that can be set up by non-programmers (such as artists) but is also simple for me to configure so I can focus on actual development.

I’ve explored various options (Docker, Podman, Anaconda, NixOS, VMs), but the choices are overwhelming, and I’m unsure which one is best for my needs.

I’ve had partial success with a Fedora+i3wm virtual environment (VM), creating a plug-and-play experience. However, this setup requires extra space (~3GB for the OS) and includes software already installed on the host system. It also requires users to learn i3wm and possibly use the command line, which may not be ideal for everyone.

I would appreciate any advice on how to approach this effectively.

Edit: An example of things to setup:

  • The right .Net Sdks version
  • Git
  • Git LFS
  • Format Checks
  • VScode (+ extensions)
  • Godot (+ extensions)

Final: I have read your recommendations, researched your suggestions, and looked at what other projects use (Luanti uses docker). And I have finally decided that at least for now this might be a bit overboard. I will start with a simple setup script and setup files (such as for vscode) with instructions. And if I need to in the future I will most likely use Docker.

you are viewing a single comment's thread
view the rest of the comments
[–] Telorand@reddthat.com 11 points 2 days ago (1 children)

Why do you need i3wm? I'm not sure I understand why that's a development requirement.

[–] heartbreaker@lemmy.world 2 points 2 days ago (1 children)

I did it to save on space, LXDE could also be an option but with a bit more space.

[–] Telorand@reddthat.com 17 points 2 days ago (1 children)

No, I mean: why is a window manager a requirement? You're developing a game. Your dev environment requirements should be DE/WM agnostic.

If you intend your collaborators to be using Linux, you should look into Distrobox/podman and have your containerfile ready for deployment. Or just tell people what tools they need installed.

Enforcing a particular DE/WM will make development harder for some people, and it will add unnecessary burden to your project.

[–] heartbreaker@lemmy.world 3 points 2 days ago* (last edited 2 days ago)

What you are saying is correct, and why I am looking for a better way.
It was just simpler for me to set up a complete image that can be used on a VM.