From dec045b3110d1b11392764c0f2fe817f93d004bb Mon Sep 17 00:00:00 2001 From: Emmanuel Simon Date: Sun, 11 May 2025 16:39:33 +0300 Subject: [PATCH] docs(faq): add explanation of the difference between Open Source and Free Software --- .idea/.gitignore | 10 ++++++++++ pages/help/faq.tsx | 6 ++++++ 2 files changed, 16 insertions(+) create mode 100644 .idea/.gitignore diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..7bc07ec2 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Environment-dependent path to Maven home directory +/mavenHomeManager.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/pages/help/faq.tsx b/pages/help/faq.tsx index 929379aa..1b0a5fda 100644 --- a/pages/help/faq.tsx +++ b/pages/help/faq.tsx @@ -97,6 +97,12 @@ const faqs: FAQItem[] = [ answer: 'Essential tools include Git for version control, GitHub/GitLab for hosting, issue trackers for project management, CI/CD tools for testing, and communication platforms like Discord or Slack. Many projects also use specific linters and formatters.', category: 'Best Practices' + }, + { + question: 'What’s the Difference Between Open Source and Free Software?', + answer: + 'While often used interchangeably, "Free Software" emphasizes user freedom (as defined by the Free Software Foundation), while "Open Source" focuses on source code availability and collaborative development.', + category: 'Legal' } ]