Vulcain is a project manager to help you create and manage your web projects. It installs directly on your local web server
-
Download the repository and install it at the root of the "www" folder of your local server.
-
Create a database and call it whatever you want
-
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 file to the "/app/resources/" folder. Your file must be in .zip
-
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 file to the "/app/resources/" folder. Your file must be in .zip
- 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.
For add an existing project move your project into the "/public/" folder and in the application goto Create project and Add an existing project.