From 248c81abe1b0c8aa850ba9ce8a81842a59418ec4 Mon Sep 17 00:00:00 2001 From: Facundo Batista Date: Mon, 2 Nov 2020 15:26:08 -0300 Subject: [PATCH] Added fades to the list of the tools. --- backend/githubData.ts | 4 ++++ frontend/src/initialToolData.tsx | 11 +++++++++++ 2 files changed, 15 insertions(+) diff --git a/backend/githubData.ts b/backend/githubData.ts index 5df1fe6..b3141fc 100644 --- a/backend/githubData.ts +++ b/backend/githubData.ts @@ -79,6 +79,10 @@ const tools = [ name: "pip-tools", owner: "jazzband", }, + { + name: "fades", + owner: "PyAr", + }, ]; function getQuery(name: string, owner: string) { diff --git a/frontend/src/initialToolData.tsx b/frontend/src/initialToolData.tsx index bdf4800..914ca3a 100644 --- a/frontend/src/initialToolData.tsx +++ b/frontend/src/initialToolData.tsx @@ -186,6 +186,17 @@ const _initialToolData: Tool[] = [ name: 'venv', url: 'https://docs.python.org/3/library/venv.html', }, + { + features: ['application deployment', 'task automation', 'virtual environment management'], + name: 'fades', + toolDescription: + 'fades is a system that automatically handles the virtualenvs in the cases normally found when writing scripts and simple programs, and even helps to administer big projects.', + useCases: ['automatically manage virtualenvs', 'virtualenv lifecycle autocontained inside scripts', 'run interactive interpreter inside virtualenv for simple testing new libraries'], + dependsOn: [], + url: 'https://github.com/PyAr/fades/', + createdAt: '2014-11-17T02:44:04Z', + primaryLanguage: { name: 'Python' }, + }, ]; _initialToolData.sort((a, b) => { return a.name < b.name ? -1 : 1;