Epaphrodites combines simplicity, compatibility with Python
, support for multiple databases
, and a commitment to open-source
principles. It's a promising solution for web programming enthusiasts seeking a flexible, transparent, and evolving development environment. Join this passionate community and explore the opportunities that Epaphrodites can offer for your web projects.
What you should know before starting the installation. To create a new application, please first ensure that your computer meets the following requirements.
- PHP >= 8.1
- OpenSSL PHP Extension
- ZIP PHP Extension
- gd Extension
- intl PHP Extension
- PDO PHP Extension
- JSON PHP Extension
- XML PHP Extension
- Mbstring PHP Extension
- pdo_sqlite Extension for sqlite3
- Redis Extension (if you use Redis)
- pdo_oci Extension (if you use oracle)
- pdo_mysql Extension (if you use Mysql)
- mongodb Extension (if you use MongoDB)
- pdo_pgsql Extension (if you use PostgreSQL)
- pdo_sqlsrv Extension (if you use sqlServer)
- Python3 installation (If you prefer to include elements of code written in Python)
composer create-project epaphrodites/epaphrodites your-project-name
cd your-project-name
php epaphrodites install component
MongoDB
on your machine and wish to incorporate its usage into your project, please execute the following command:
composer require mongodb/mongodb
Execute the following command to update all dependencies :
composer update
To execute "dump-autoload," run the command :
composer dump-autoload
- Open this file (SetDirectory.php)
bin\epaphrodites\define\config\SetDirectory.php
- Set database accpeted : ('mysql/oracle/pgsql/sqlserver/sqlite/mongodb/redis')
define('_FIRST_DRIVER_', 'sqlite');
- Open this file (Config.ini)
bin\database\config\ini\config.ini
- Choose your first configuration
// First DB username
1DB_USER =
// First DB password
1DB_PASSWORD =
// First DB port
1DB_PORT =
// First DB name
1DB_DATABASE = "epaphroditesdb.sqlite"
// First DB SOCKET support
1DB_SOCKET = false
// First DB socket
1DB_SOCKET_PATH = ""
// First DB host
1DB_HOST = "127.0.0.1"
// First DB DRIVER - accepted : mysql/oracle/pgsql/sqlserver/sqlite/mongodb/redis
1DB_DIVER = "sqlite"
Run this command to create your database
php heredia create:db epaphroditesdb
php heredia update:driver
- Note: This command is intended for users who have previously installed Python on their machine. It simplifies the installation of specific Python libraries essential for the optimal functioning of the Epaphrodites framework. Furthermore, you have the freedom, at your level, to integrate other libraries according to the requirements of your projects :
php heredia pip:component
- Note: For SQL databases, you must create your database before running your application. In the case of MongoDB, the system will generate your database based on your configuration.
Run server
cd your_project
php heredia run:server --port=8000
Authentification access
Login : admin
Password : admin
π Enjoy yourself
Contributions are always welcome!!