Initial commit — Diabetix V2

Application Laravel 12 + Inertia + Vue 3 + Tailwind.
Fonctionnalités : dashboard glycémique, saisie de mesures, courbe SVG,
statistiques (jour/semaine/mois/trimestre), défis & badges, chat coach IA
(Gemini), paramètres profil avec palette de couleurs, pages auth redessinées,
emails transactionnels via Resend avec thème Diabetix.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jeremy bayse
2026-04-29 07:01:41 +02:00
commit 26c6d8031c
150 changed files with 19863 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
Schema::create('password_reset_tokens', function (Blueprint $table) {
$table->string('email')->primary();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
Schema::create('sessions', function (Blueprint $table) {
$table->string('id')->primary();
$table->foreignId('user_id')->nullable()->index();
$table->string('ip_address', 45)->nullable();
$table->text('user_agent')->nullable();
$table->longText('payload');
$table->integer('last_activity')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');
Schema::dropIfExists('password_reset_tokens');
Schema::dropIfExists('sessions');
}
};

View File

@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('cache', function (Blueprint $table) {
$table->string('key')->primary();
$table->mediumText('value');
$table->integer('expiration')->index();
});
Schema::create('cache_locks', function (Blueprint $table) {
$table->string('key')->primary();
$table->string('owner');
$table->integer('expiration')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('cache');
Schema::dropIfExists('cache_locks');
}
};

View File

@@ -0,0 +1,57 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('jobs', function (Blueprint $table) {
$table->id();
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
});
Schema::create('job_batches', function (Blueprint $table) {
$table->string('id')->primary();
$table->string('name');
$table->integer('total_jobs');
$table->integer('pending_jobs');
$table->integer('failed_jobs');
$table->longText('failed_job_ids');
$table->mediumText('options')->nullable();
$table->integer('cancelled_at')->nullable();
$table->integer('created_at');
$table->integer('finished_at')->nullable();
});
Schema::create('failed_jobs', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('jobs');
Schema::dropIfExists('job_batches');
Schema::dropIfExists('failed_jobs');
}
};

View File

@@ -0,0 +1,102 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->string('first_name')->nullable()->after('name');
$table->date('birth_date')->nullable()->after('email_verified_at');
$table->enum('diabetes_type', ['type1', 'type2', 'gestational', 'other'])->default('type2')->after('birth_date');
// WHO / international Time-in-Range consensus: 70180 mg/dL
$table->unsignedSmallInteger('target_min')->default(70)->after('diabetes_type');
$table->unsignedSmallInteger('target_max')->default(180)->after('target_min');
$table->unsignedInteger('points')->default(0)->after('target_max');
$table->unsignedInteger('streak_days')->default(0)->after('points');
$table->string('palette')->default('mint')->after('streak_days');
});
Schema::create('glucose_measurements', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
$table->unsignedSmallInteger('value'); // mg/dL
$table->enum('context', ['fasting', 'before_meal', 'after_meal', 'bedtime', 'other'])->default('other');
$table->unsignedSmallInteger('carbs_g')->nullable();
$table->decimal('insulin_units', 4, 1)->nullable();
$table->text('note')->nullable();
$table->timestamp('measured_at');
$table->timestamps();
$table->index(['user_id', 'measured_at']);
});
Schema::create('challenges', function (Blueprint $table) {
$table->id();
$table->string('slug')->unique();
$table->string('icon', 8);
$table->string('title');
$table->text('description');
$table->unsignedSmallInteger('points');
$table->unsignedSmallInteger('target_value')->default(100);
$table->string('unit')->default('%');
$table->boolean('active')->default(true);
$table->timestamps();
});
Schema::create('user_challenges', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
$table->foreignId('challenge_id')->constrained()->cascadeOnDelete();
$table->unsignedSmallInteger('progress')->default(0);
$table->boolean('completed')->default(false);
$table->timestamp('started_at')->useCurrent();
$table->timestamp('completed_at')->nullable();
$table->timestamps();
$table->unique(['user_id', 'challenge_id']);
});
Schema::create('badges', function (Blueprint $table) {
$table->id();
$table->string('slug')->unique();
$table->string('icon', 8);
$table->string('label');
$table->string('criteria')->nullable();
$table->timestamps();
});
Schema::create('user_badges', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
$table->foreignId('badge_id')->constrained()->cascadeOnDelete();
$table->timestamp('unlocked_at')->useCurrent();
$table->timestamps();
$table->unique(['user_id', 'badge_id']);
});
Schema::create('chat_messages', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
$table->enum('sender', ['user', 'coach']);
$table->text('body');
$table->json('actions')->nullable();
$table->timestamps();
$table->index(['user_id', 'created_at']);
});
}
public function down(): void
{
Schema::dropIfExists('chat_messages');
Schema::dropIfExists('user_badges');
Schema::dropIfExists('badges');
Schema::dropIfExists('user_challenges');
Schema::dropIfExists('challenges');
Schema::dropIfExists('glucose_measurements');
Schema::table('users', function (Blueprint $table) {
$table->dropColumn(['first_name', 'birth_date', 'diabetes_type', 'target_min', 'target_max', 'points', 'streak_days', 'palette']);
});
}
};