Skip to content

peakgreg/test

Repository files navigation

Auth Boilerplate Platform

  • Run DeepSeek locally: ollama run deepseek-r1:8b

  • composer install --no-dev --optimize-autoloader

Setup

  • Update .env file.

Terminal Commands

  • Generate directory tree tree -a --prune -I 'vendor' > directory_tree.txt

  • Launch PHP php -S 0.0.0.0:8888 php -S 0.0.0.0:8000 -t public

Architecture

  • Procedural Modular Architecture

MySQL

  • Start the MySQL service

    • brew services start mysql
  • Secure the installation (set root password and remove insecure defaults):

    • mysql_secure_installation
  • Log into MySQL.

    • mysql -u root -p
  • Create MySQL Database

    • CREATE DATABASE database_name;
  • Import schema.sql to setup tables.

    • mysql -u root -p user_auth < database/schema.sql

About

No description, website, or topics provided.

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published