Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear experts,
I have downloaded the source code for single website and it is stored as zip file. The file contains many folders as below which is of course depend and can be vary based on the source code of any website.
I want to use this source code for creating own mashup page. Every folder has multiple subfolders.
Just need to understand how I can create single compressed file to upload as extension for mashup editor.
To create a single compressed file for your QlikSense mashup, you can follow these steps:
1. Extract the ZIP File: Extract the downloaded source code zip file to a folder.
2. Create a QEXT File: In the root directory of your extracted folder, create a .qext file. This file is a descriptor file for QlikSense to recognize your extension. It should contain a JSON object with properties like name, description, type, version, etc. Here's an example:
{
"name": "YourMashupName",
"description": "Your mashup description",
"type": "mashup",
"version": "1.0.0",
"author": "Your Name"
}
3. Organize Your Files: Make sure all your HTML, CSS, JS, and any other files are in the correct directories. QlikSense will look for a main HTML file (usually named index.html) in the root directory of your extension.
4. Compress Your Files: Once you've set up your files and folders correctly, compress the entire directory into a single ZIP file. This is the file you'll upload to QlikSense.
5. Upload to QlikSense: In QlikSense, go to the Dev Hub and select Mashup editor. Click on Create new and then select Extension. Here, you can upload your ZIP file.
Please replace the placeholders in the .qext file with your actual details. This process should give you a single compressed file that you can upload as an extension for your mashup in QlikSense.
I hope this helps!
Thank you sayed for your detail information.
But, you have mentioned basic steps to create single compressed file and import into mashup editor.
My query is I have already downloaded full set of web site source code which has multiple subfolders as I mention above. Now I want to club these into single mashup file. How I can achieve this ?