Skip to content

Commit

Permalink
feat: show either django or flask OAs depending on variant (#1854)
Browse files Browse the repository at this point in the history
  • Loading branch information
merunga authored Jul 3, 2024
1 parent acd7e38 commit 3d915f0
Showing 1 changed file with 32 additions and 15 deletions.
47 changes: 32 additions & 15 deletions projects/05-fleet-management-api/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,15 @@ learningObjectives:
- scm/github/collaboration
- scm/github/project-management

# permite mayor control de la informacion en seleccion de proyecto
# se pretende tener una semantica predefinida q controle el comportamiento
# de la interfaz.
# por ahora estos son los unicos valores permitidos
tags:
- featured

# para proyectos que tienen diferentes implementaciones (aka rutas)
variants:
- name: java
learningObjectives:
- java
- object-oriented-programming

- name: node
learningObjectives:
- js/testing/unit
Expand All @@ -40,29 +36,50 @@ variants:
- node/npm-scripts
- express/routing
- express/middleware
- typescript/basic-types/primitives
- typescript/basic-types/arrays
- typescript/basic-types/functions
- typescript/basic-types/object-types
- typescript/basic-types/union-types
- typescript/basic-types/interfaces
- typescript/basic-types/enums
# Cualquier OA puede expresarse como objeto, por ejemplo para flaggear
# como "opcional".
# por ahora es la unica propiedad soportada.
- id: typescript/basic-types/primitives
optional: true
- id: typescript/basic-types/arrays
optional: true
- id: typescript/basic-types/functions
optional: true
- id: typescript/basic-types/object-types
optional: true
- id: typescript/basic-types/union-types
optional: true
- id: typescript/basic-types/interfaces
optional: true
- id: typescript/basic-types/enums
optional: true
- id: object-oriented-programming
optional: true


- name: python
learningObjectives:
- id: python/django
exclude: true
- id: sql/crud
exclude: true
- id: postgres/data-types
exclude: true
- id: postgres/indexes
exclude: true
- python
- id: object-oriented-programming
optional: true

- name: python-django
learningObjectives:
- id: python/flask
exclude: true
- id: sql/crud
exclude: true
- id: postgres/data-types
exclude: true
- id: postgres/indexes
exclude: true
- python

- name: csharp
learningObjectives:
- csharp
Expand Down

0 comments on commit 3d915f0

Please sign in to comment.