Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions backend/githubData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ const tools = [
name: "pip-tools",
owner: "jazzband",
},
{
name: "fades",
owner: "PyAr",
},
];

function getQuery(name: string, owner: string) {
Expand Down
11 changes: 11 additions & 0 deletions frontend/src/initialToolData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down