Skip to content

Commit

Permalink
Merge branch 'main' into create-pr-action/update-collections-0
Browse files Browse the repository at this point in the history
  • Loading branch information
kenyonj authored Nov 6, 2023
2 parents 2a6216b + d0bcbe8 commit 68d1b0e
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 5 deletions.
6 changes: 4 additions & 2 deletions feed.json.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ permalink: feed.json
],
"topics": [
{% for topic in topics %}
{% assign related = topic.related | split: ', ' %}
{% assign aliases = topic.aliases | split: ', ' %}
{
"topic_name": {{ topic.topic | jsonify }},
"created_by": {{ topic.created_by | jsonify }},
Expand All @@ -47,12 +49,12 @@ permalink: feed.json
"url": "{{ site.url }}{{ topic.url | remove_first: "/index.html" }}",
"wikipedia_url": {{ topic.wikipedia_url | jsonify }},
"related": [
{% for related_topic in topic.related %}
{% for related_topic in related %}
"{{ related_topic }}"{% unless forloop.last == true %},{% endunless %}
{% endfor %}
],
"aliases": [
{% for alias in topic.aliases %}
{% for alias in aliases %}
"{{ alias }}"{% unless forloop.last == true %},{% endunless %}
{% endfor %}
],
Expand Down
9 changes: 9 additions & 0 deletions topics/infrastructure-as-code/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
aliases: iac
display_name: Infrastructure as code
short_description: Infrastructure as code is a way to manage environment packages as code instead of manual installation and mantainance.
related: cloud-computing, devops, containerization, as-code, everything-as-code, container-orchestration, infrastructure-as-a-service, provisioning, infrastructure-drift
topic: infrastructure-as-code
wikipedia_url: https://en.wikipedia.org/wiki/Infrastructure_as_code
---
Nowadays, developers strive to have as identical environments for production, staging and development as possible to rule out any infrastructure interferance. Therefore, instead of installing and maintaining packages manually, **infrastructure** is defined and managed **as code**. Container orchestration solutions and version control systems help keeping all environments in sync and changes transparent.
13 changes: 13 additions & 0 deletions topics/json-schema/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
created_by: Kris Zyp, Francis Galiegue, Gary Court, Austin Wright, Henry Andrews, Ben Hutton, and Greg Dennis
aliases: jsonschema
display_name: JSON Schema
logo: json-schema.png
released: '2009'
short_description: JSON Schema is a vocabulary that allows you to validate, annotate, and manipulate JSON
documents.
topic: json-schema
url: https://json-schema.org/
related: json
---
While JSON is probably the most popular format for exchanging data, **JSON Schema** is the vocabulary that enables JSON data consistency, validity, and interoperability at scale.
Binary file added topics/json-schema/json-schema.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 24 additions & 3 deletions topics/laravel/index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
---
aliases: laravel4, laravel5, laravel54, laravel55, laravel-framework, laravel6
aliases: laravel4, laravel5, laravel54, laravel55, laravel-framework, laravel6, laravel7, laravel8, laravel9, laravel10
created_by: Taylor Otwell
display_name: Laravel
github_url: https://github.com/laravel
logo: laravel.png
related: framework, php
related: framework, php, symfony, eloquent, mvc, syntactic-sugar, codeigniter, blade-template, php-artisan, october-cms
released: June 2011
short_description: The PHP Framework for Web Artisans.
topic: laravel
url: https://laravel.com/
wikipedia_url: https://en.wikipedia.org/wiki/Laravel
---
Laravel is a popular PHP framework, used for the development of MVC web applications.
**Laravel** is a popular PHP framework, used for the development of MVC web applications, based on [Symfony](https://github.com/topics/symfony) and created as an attempt to provide a more advanced alternative to [CodeIgniter](https://github.com/topics/codeigniter).

# [Versions](https://laravel.com/docs/10.x/releases#versioning-scheme)
[**v4**](https://github.com/topics/laravel4) ([v4.2](https://github.com/topics/laravel42)) • [**v5**](https://github.com/topics/laravel5) ([v5.1](https://github.com/topics/laravel51) • [v5.2](https://github.com/topics/laravel52) • [v5.3](https://github.com/topics/laravel53) • [v5.4](https://github.com/topics/laravel54) • [v5.5](https://github.com/topics/laravel55) • [v5.6](https://github.com/topics/laravel56) • [v5.7](https://github.com/topics/laravel57) • [v5.8](https://github.com/topics/laravel58)) • [**v6**](https://github.com/topics/laravel6) • [**v7**](https://github.com/topics/laravel7) • [**v8**](https://github.com/topics/laravel8) • [**v9**](https://github.com/topics/laravel9) • [**v10**](https://github.com/topics/laravel10)

# Packages
* [Valet](https://github.com/topics/valet)
* [Homestead](https://github.com/topics/homestead)
* [Cashier](https://github.com/topics/laravel-cashier)
* [Socialite](https://github.com/topics/laravel-socialite)
* [Passport](https://github.com/topics/laravel-passport)
* [Scout](https://github.com/topics/laravel-scout)
* [Dusk](https://github.com/topics/laravel-dusk)
* [Horizon](https://github.com/topics/laravel-horizon)
* [Telescope](https://github.com/topics/laravel-telescope)
* [Sanctum](https://github.com/topics/laravel-sanctum)
* [Jetstream](https://github.com/topics/laravel-jetstream)
* [Sail](https://github.com/topics/laravel-sail)
* [Echo](https://github.com/topics/laravel-echo)
* [Inertia](https://github.com/topics/inertiajs)
* [Livewire](https://github.com/topics/livewire)
* [Nova](https://github.com/topics/laravel-nova)

0 comments on commit 68d1b0e

Please sign in to comment.