<?php

namespace Database\Seeders;

use Illuminate\Database\Seeder;

class EnvironmentVariableSeeder extends Seeder
{
    /**
     * Run the database seeds.
     */
    public function run(): void
    {
        //        EnvironmentVariable::create([
        //            'key' => 'NODE_ENV',
        //            'value' => 'production',
        //            'is_build_time' => true,
        //            'application_id' => 1,
        //        ]);
    }
}