Skip to content

boostlink-creatorh/xpert-forex-auditflow

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Xpert Forex Trade

A simple PHP MVC starter for a forex trading platform supporting spot and futures trading.

Features

  • User login
  • Spot and futures trade placement
  • Trade dashboard
  • MVC structure (Models, Views, Controllers)
  • MySQL database integration

Project Structure

  • app/Controllers - Handles user and trade actions
  • app/Models - Database logic
  • app/Views - HTML templates
  • config/config.php - Loads DB settings from .env
  • public/index.php - Front controller and router
  • .env.example - Sample environment config

Getting Started

  1. Copy .env.example to .env and fill in your database details.
  2. Create the database and tables:
    • users (id, username, password, etc.)
    • trades (id, user_id, pair, amount, direction, type, created_at)
  3. Point your web server to public/index.php
  4. Start building!

Default Login

After setting up your database, you can log in with the following credentials:

  • Username: admin
  • Password: Kapacity$55

You can add more users directly to the users table in your database.

Security

  • Do NOT commit your real .env file.
  • Add .env to .gitignore.
  • Always validate user input in production!

Deployment

About

A code repository designed to show the best GitHub has to offer.

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 92.1%
  • HTML 7.9%