atari-legend / legacy

Source code for the legacy AtariLegend site (Still used for the CPANEL)
https://legacy.atarilegend.com/
GNU General Public License v3.0
3 stars 0 forks source link
atari-st

Legacy AtariLegend source code

Build Status Quality Score

AtariLegend is a website for Atari ST enthusiasts and retro gamers in general.

This repository contains the source code for the legacy public site and control panel (aka CPANEL). The public site has been reimplemented in 2020, See the main repository. The control panel still runs on the code base of this repository.

Local installation

Follow the instructions below to setup your local environment. Alternatively, use the pre-configured Docker setup.

Prerequisites

Instructions

<?php

$db_host = "YOUR_DB_HOSTNAME";
$db_username = "YOUR_DB_USER_NAME";
$db_password = "YOUR_DB_PASSWORD";
$db_databasename = "YOUR_DB_NAME";
<?php

$email_mailer = 'smtp';   // See PHPMailer for possible values
$smtp_username = '...';
$smtp_password = '...';
$smtp_port = 587;
$smtp_host = '...';
$smtp_auth = true;
$smtp_secure = 'ssl';
<?php

define("FRONT_URL", "http://localhost:8080");

Contributing

Use feature branches and open pull requests again the development branch. Once it's merged in development it will be automatically deployed on the development server. We do a release to production from time to time by merging the current development branch into master.