No description
  • PHP 82.4%
  • Dockerfile 13.1%
  • Shell 4.5%
Find a file
2026-04-03 19:49:18 +02:00
.gitignore Initial commit 2026-04-03 15:32:43 +02:00
composer.json Toevoegen rest van het project 2026-04-03 19:49:18 +02:00
composer.lock Toevoegen rest van het project 2026-04-03 19:49:18 +02:00
docker-compose.dev.yaml Toevoegen rest van het project 2026-04-03 19:49:18 +02:00
Dockerfile Toevoegen rest van het project 2026-04-03 19:49:18 +02:00
index.php Toevoegen rest van het project 2026-04-03 19:49:18 +02:00
README.md Toevoegen rest van het project 2026-04-03 19:49:18 +02:00
start_server.sh Toevoegen project 2026-04-03 19:48:38 +02:00

Hallo!

Wat is dit?

Dit is een testpagina.

Lokale ontwikkeling

Dit ding heeft ook nog een docker-compose file voor lokale ontwikkeling:

services:
  app:
    build:
      context: .
      dockerfile: Dockerfile
    container_name: composer-test-app
    working_dir: /app
    volumes:
      - ./:/app
    ports:
      - "8000:8000"
    command: php -S 0.0.0.0:8000 -t /app

Code

Wat C# code kan ook niet missen natuurlijk:

using System;

namespace HelloWorld
{
  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("Hello World!");    
    }
  }
}

Meer weten?

Klik hier