HLP-Nebula is a FreeSpace 2 mod repository manager.
This project has two main goals :
- Provide a release management tool for modders
- Make mod download and install process easier to players
HLP-Nebula is mostly written in PHP, as a Symfony2 framework bundle.
To run HLP-Nebula, the first thing you need is a working LAMP environment.
On Ubuntu, use command :
sudo apt-get install apache2 php5 mysql-server libapache2-mod-php5 php5-mysql php5-gd
-
If you have not done it yet, download the latest version of HLP-Nebula.
-
Move its root
Symfony
folder directly to your Apache2 host folder, and selectSymfony
as your current working directory. -
Rename
app/config/parameters.yml.dist
toapp/config/parameters.yml
-
Edit
app/config/parameters.yml
and change these settings :database_host: 127.0.0.1 database_port: null database_name: symfony database_user: root database_password: yourpassword
-
Install Symfony "vendors" (you may need to use
sudo
on Ubuntu desktop) :php composer.phar install
-
Allow Symfony to write to its
app/cache
andapp/logs
:sudo chmod 777 -R app/cache sudo chmod 777 -R app/logs
-
Initialise Doctrine2 ORM, Symfony2's database component (and register HLP-Nebula objects in Doctrine2) :
php app/console doctrine:database:create php app/console doctrine:schema:update --force
If Symfony2 is installed at your Apache2 host folder root, this link should now work : localhost/Symfony/web/app_dev.php/nebula
- Register on this page : localhost/Symfony/web/app_dev.php/nebula/register
- Once connected, access your personal mod repository by clicking the link on the right side of the nav bar.
HLP-Nebula is developed jointly with Knossos, but any FreeSpace 2 mod downloader/installer implementing this schema can become a client (ALPHA FreeSpace 2 launcher developer contributed to the JSON format).
HLP-Nebula could add ome limited support for legacy TXT mod repository configuration files, if needed.
HLP-Nebula is in active development. It is still missing a lot of features. The official development thread is found on Hard Light Productions, FreeSpace 2 community.
###To-do list :###
Modders site :
- User management : DONE
- Mod/branch/build registration : DONE
- JSON repository config file generation : DONE
- JSON repository validation (to enable md5sum checks on client side) : DONE
- Main pages (getting started, mods/modders global list...) : WIP
- User/mod/branch/build detail pages and activity log : WIP
Players site :
- Everything : NOT STARTED
HLP-Nebula is licensed under the European Union Public License, Version 1.1.
Symfony is licensed under the MIT License.