Error during "build" phase of GitHub Pages deployment - jekyll

This is my first dive into programming and I am trying to deploy my GitHub Pages site. I am feeling very lost trying to troubleshoot this on my own. Does anyone have any advice? I am receiving Conversion error: Jekyll::Converters::Scss encountered an error while converting 'assets/css/style.scss':
43
No such file or directory # dir_chdir - /github/workspace/docs

Related

why do i am getting Failed to create deployment error while deploying my website on github pages

I created a html website. I uploaded all the source code in my GitHub repository. Now I want to host my website using GitHub Pages but I am getting Error that says: 'Failed to create deployment (status: 500) with build version 35c4d9bf78f338ba8319cfe032e967dd258d9ede. Server error, is githubstatus.com reporting a Pages outage? Please re-run the deployment at a later time'
This is the error which I got
It can be caused by several reasons, just re-run the deploy job after some minutes. For me, it worked.

Why does my GitPages website only show a 404 even though I am sure my code is not buggy?

My Git Website returns a 404 every time I run it. The only thing I can find is this: Conversion error: Jekyll::Converters::Scss encountered an error while converting'assets/css/style.scss': No such file or directory # dir_chdir - /github/workspace/docs
Someone please help.
My project: https://github.com/orivera2280/GetConnectedSix.git
Hello and welcome to StackOverflow. GitHub Pages is for static-file hosting (HTML, CSS, JS for the client-side, images, etc) and would not RUN the Python code for your Flask app, hence the 404 page. You would need a cloud-hosting platform like Heroku or AWS. Both offer a free tier.

Heroku deployment: 'Cannot find module '...mime.js Please verify package.json has valid "main" entry

I am working on a React app with a MySQLdb and am trying to deploy with Heroku. I have followed a guide closely and am using JAWS DB hook to connect my db to Heroku. I am running into this error when I run the "heroku open" command after pushing to heroku:
"Error: Cannot find module '/app/node_modules/mime/mime.js'. Please verify that the package.json has a valid "main" entry"
My package.json has mime.js installed as a devDependency. I have set the "main" line in my package.json to "index.js" as well.
Repo: https://github.com/AndrewCodesDontYaKnow/ReactCalc
Anyone have any experience with this type of issue? Thanks much.
I just had the same problem with a different module ("telebot" in my case)
I didn't figure out how to fix the issue (if anyone else finds this, I'd also like to know how to fix it), but I got it to work with a work around...
I copied the module source, and put it into my repo, and just used it as a local module...
(in my case I had by my .gitignore file ignore any "lib" folder, it gave me a hard time until i realized the lib folder from the telebot folder is just not getting uploaded to GitHub, and as such not getting to heroku, but after commenting it out, and getting it to upload, the local module worked as intended)
also, I don't think this is an actual answer, but I don't have the rep to comment, so I hope this helps

NSSM - Trying to access Software/Google/DriveFS/Share

I'm using NSSM to run a dotnet core app as a Windows service, which works really well.
However, I've noticed an error when I run nssm install MyAppName, which loads a window to set up the service. When I Select the executable to install, I notice that the following error is written to the console:
CreateDirectory : The system could not find the path specified. (3)
Could not initialize crash reporting DB
Can not init crashpad with status: CRASHPAD_DB_INIT_ERROR[23584]
registry_win.h:59:GetProtoFromRegistryValue Opening registry key Software\Google\DriveFS\Share failed with 0x2
I dont know much about NSSM nor Google DriveFS, but I'm wondering why I'm seeing this message - any ideas? My main concern is whether or not this is trying to access my Google Drive? Probably not - it seems a fairly reputable app, but I figure it's best to ask as someone will likely know better than me.

'[Error] Unable to find or read "package.json" in the CWD. The "release-react" command must be executed in a React Native project folder.'

I've been getting this error while trying to create a script file to automate a little of the codePush deployment process.
Looking at all the information I could find online wasn't helping - In the script I echo'd the PWD to see that I am running the code-push release-react command from the correct location in my .sh file, I am including react-native as a package dependency in my package.json. Everything looked fine, but I was still getting the error.
Since I found the issue but couldn't find anything online to point to what the problem was, I'll post the answer below.
Upon playing with the scripts in my package.json I tried running npm install again to make sure everything was setup properly when I get an error that actually showed me my issue.
The problem was the JSON in my package.json had become corrupted - the syntax wasn't spot on. I had started playing with the json in the file and forgot to revert the changes I made when I finished and had an extra comma.
Now that almost a whole day is gone, I can get back to work.