Skip to content

Project manager for WAMP, MAMP, LAMP, Laragon and others

License

Notifications You must be signed in to change notification settings

axelv71/Vulcain

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vulcain

Vulcain


Vulcain is a project manager to help you create and manage your web projects. It installs directly on your local web server


Installation

  1. Download the repository and install it at the root of the "www" folder of your local server.

  2. Create a database and call it whatever you want

  3. Edit database variables in ".env.php"

$_ENV['DB_HOST'] = "localhost";  // Your database address
$_ENV['DB_DATABASE'] = "vulcain"; // Your database name
$_ENV['DB_USERNAME'] = "root"; // Your database username
$_ENV['DB_PASSWORD'] = ""; // Your database password

Add your own css framework

  1. Add your file to the "/app/resources/" folder. Your file must be in .zip

  2. Add an array in the variable "$_ENV['RS_CSS']", containing the information of your file.

// Framework CSS ressources
$_ENV['RS_CSS'] =  [ // Framework CSS ressources
    ["Tailwind", "tailwind", false],
    ["Bootstrap", "bootstrap", true],
    [YOUR_FRAMEWORK_NAME, ZIP_FILE_NAME, true or false]
];
  • The first parameter of the array must contain the name of your css framework.
  • The second parameter of the array must contain the name of the .zip file.
  • For the third parameter, if your framework contains javascript files, put true otherwise put false.

Add your own project

  1. Add your file to the "/app/resources/" folder. Your file must be in .zip
  2. Add an array in the variable "$_ENV['RS_PROJECT']", containing the information of your project.
// Add project fast build
$_ENV['RS_PROJECT'] = [
   [PROJECT_NAME, ZIP_FILE_NAME]
];
  • The first parameter of the array must contain the name of your css framework.
  • The second parameter of the array must contain the name of the .zip file.

Add an existing projects

For add an existing project move your project into the "/public/" folder and in the application goto Create project and Add an existing project.