Auth Boilerplate Platform
-
Run DeepSeek locally: ollama run deepseek-r1:8b
-
composer install --no-dev --optimize-autoloader
- Update .env file.
-
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
- Procedural Modular Architecture
-
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