You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CSS and assets are requested from localhost:8081 regardless of the port used by running ./develop_server.sh start [port], which causes the page to load without them.
Raising awareness of this issue. We should double check how the develop_server.sh script is working alongside Pelican.
Running the website with ./develop_server.sh start 8081 works as intended.
The text was updated successfully, but these errors were encountered:
The settings for development hardcode the SITEURL to http://localhost:8081. Setting a different port won't really work, as we declare it already in the SITEURL.
The settings for production have the proper SITEURL configured at https://space.ros.org.
Having said that, the problem here lies in the develop_server file. Latest Pelican builds use an underlying Makefile in order make some pelican commands more accessible. That approach would be much simpler.
Tasks:
Use a Makefile instead of the develop_server.sh file.
Update Readme (or devnotes, if we want more indepth comments) with how to use that Makefile.
CSS and assets are requested from
localhost:8081
regardless of the port used by running./develop_server.sh start [port]
, which causes the page to load without them.Raising awareness of this issue. We should double check how the
develop_server.sh
script is working alongside Pelican.Running the website with
./develop_server.sh start 8081
works as intended.The text was updated successfully, but these errors were encountered: