You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Clone the repository
git clone <repository-url>cd mediax
# Install Go dependencies
go mod download
Database Setup
Create a MySQL database:
CREATEDATABASEmediax;
CREATEUSER 'mediax_user'@'localhost' IDENTIFIED BY 'your_password';
GRANT ALL PRIVILEGES ON mediax.* TO 'mediax_user'@'localhost';
FLUSH PRIVILEGES;
The application will automatically create the required tables on first run.