I purchased and installed Metronic and Composer and followed the setup instructions. Everything seemed to complete successfully, but I was expecting some instructions about accessing a UI. When I navigate to 127.0.0.1:8001 or localhost:8001 I just get a blank page with a relative url on it (ex. "metronic/tailwind/views/pages/index.html"). What am I missing? If it helps, when I ran generate.sh I got this at the end of the output ... INFO:generator:HTML files generated successfully in themes/metronic-tailwind-html/dist/html
A total of 0 links were processed.
I think I've tried most of the suggestions and still struggling to get Composer working. Here are some details:
- The base folders off of my project folder are "metronic-tailwind-composer-v9" and "metronic-tailwind-html".
- When I go to "metronic-tailwind-composer-v9/themes/metronic-tailwind-html/dist/html/" I see plenty of HTML files under the demo folders (ex. demo2) and can open them statically in the browser successfully.
- Flask is running, but I'm still getting this "metronic/tailwind/views/pages/index.html" as the page content when I go to either 127.0.0.1:8001 or localhost:8001. Here is the terminal output after running run.sh from the metronic-tailwind-composer-v9 folder, which shows that requests are coming through to Flask and getting a 200 return code ...
Joels-MacBook-Pro:metronic-tailwind-composer-v9 joelsalomons$ ./run.sh --debug
Running Flask app in debug mode on port 8001...
/Users/joelsalomons/tour-manager-poc-tailwind-metronic/metronic-tailwind-composer-v9/.venv/lib/python3.9/site-packages/urllib3/__init__.py:34: NotOpenSSLWarning: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
* Serving Flask app 'libs'
* Debug mode: on
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
* Running on http://127.0.0.1:8001
Press CTRL+C to quit
* Restarting with stat
/Users/joelsalomons/tour-manager-poc-tailwind-metronic/metronic-tailwind-composer-v9/.venv/lib/python3.9/site-packages/urllib3/__init__.py:34: NotOpenSSLWarning: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
warnings.warn(
* Debugger is active!
127.0.0.1 - - [06/Apr/2025 16:17:26] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [06/Apr/2025 16:17:26] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 -
127.0.0.1 - - [06/Apr/2025 16:17:26] "GET /apple-touch-icon.png HTTP/1.1" 404 -
127.0.0.1 - - [06/Apr/2025 16:17:26] "GET /favicon.ico HTTP/1.1" 404 -
127.0.0.1 - - [06/Apr/2025 16:17:43] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [06/Apr/2025 16:17:43] "GET /favicon.ico HTTP/1.1" 404 -
@Geometry Dash
It sounds like the setup might have completed, but there are a few possible reasons why you're getting a blank page. Try Verify the Output Directory:
- Since generate.sh indicates that HTML files were generated in themes/metronic-tailwind-html/dist/html, check that the expected files are actually there:
- Navigate to themes/metronic-tailwind-html/dist/html/
- Look for index.html or other UI-related files
- Try manually opening an .html file in a browser
@Chill Guy Game The blank page at localhost:8001 likely means you haven’t started the Flask server after running generate.sh, which only generates static HTML files; you need to run a command like python app.py to launch the Composer Interface.
Hi
Thank you for your purchase. Here's what you should do:
1. Check the docs at https://keenthemes.com/metronic/tailwind/docs/composer for the complete setup instructions.
2. Make sure you've correctly copied all the Metronic files into the Composer directory structure as outlined in the Preparation section of the docs.
3. Run the script `./run.sh` from the root directory to properly start the Composer application.
The preview should be accessible at http://localhost:8001/ after the installation is complete. If you're seeing just a relative URL on the page, it could be due to missing files or incorrect directory structure.
Also verify that you've followed all the steps in the "Preparation" section, particularly copying the content from metronic-tailwind-html into the `themes` directories.
Thank you