If you are reading this article I’m assuming you already have the following done:
Create a project using Create-React-App;
You are using Json-Ser...
For further actions, you may consider blocking this person and/or reporting abuse
Thanks for this helpful article, i have one question please:
If my json-server has not only the db.json, but an images folder in the public folder, what should i do to upload the whole json-server content in this case?
Hey Danny, as an option you could include the links to your images in the
db.json
file like shown on the image below.dev-to-uploads.s3.amazonaws.com/up...
Same question here
I've tried this and I can't update the values dynamically. Once I set a value to true it can't be set to false again... And once I delete some entry, all the entries I added before are also deleted. This makes this application suited for internal testing but it's not cool to publish it to people to use, as they'll think it's full of bugs.
I'll try another host like heroku.
Absolutely right, Isaac. This is for quick prototyping only and can't be used in production.
"Go to your app’s repo and open Settings. In the GitHub Pages section select gh-pages branch from the drop-down menu."
I don't see the 'gh-pages' branch. I have followed all the previous steps. What can be wrong, please??
Hey Isaac, is your repo private by any chance?
Hey Nikita, thanks for the answer! No, my repo is not private.
Actually I switched from using json-server to using localStorage yesterday.
But yet the deploy to gh-pages doesn't work, when I visit the address I see the project's readme instead.
If you have another guess of what might be the problem, I'll appreciate.
Thanks again :)
Fixed.
Just did this: stackoverflow.com/a/63972301/12177597
Thanks for this write up on making json-server db.json access on repo. Meanwhile, your repo on GITHub must be in public mode because if private then you can't deploy to the gh-pages and as well as no access to your db.json. So people should keep that in mind.
Would it also work if im deploying a private repo to vercel? can the public repo containing the db still be accessed? and also, do i need to change the base urls? because json-server provides a localhost:3000/routes, can they still be accessed outside the local server?
Hello,
The react app aplication and db.json have separate repositories?
Thanks.
Hey, I have the same question, if you have figured this out could you provide me insights regarding this
Hi Mateo, yes, the db.json needs to have a separate repo.
Thanks, I've followed all steps and all is working fine but image are not displaying, means I can get images from json-server
Can anyone plz help me????????
Hi, thanks for article!
I've made a request to my-json-server.typicode.com// from my app by fetch() and get CORS error.
How I can resolve it?
Set your fetch() headers
'Access-Control-Allow-Origin': '*',
Accept: 'application/json;odata.metadata=full',
'Content-Type': 'application/json',
Hi Artem, you can do it by setting headers. This article should help: medium.com/@dtkatz/3-ways-to-fix-t...
I get the following error when trying to access my server repo from my-json-server:
maxContentLength size of 10000 exceeded.
I have about 4000 lines in json file. Is this not gonna work?
Hey Lukas, it seems to be an issue with IIS configuration. Try this article:
stackoverflow.com/questions/586555...
This was very helpful for a beginner. Is there an article available to help with publishing my app I built using JSON-server to a a live hosting service like BlueHost? I want to take that next step getting this thing online and I'm not sure where to begin.
Your post helped me deploy an app I developed locally, Thank you :)
Happy to help, Tarek!
Good day brothers, please 🙏 am still struggling to solve this, i will so grateful if I get a screenshot of how it's done
Thank you for sharing this, which is exactly what I want.
I have one question however.
this only works for reading data from the repo.
but how do I manipulate the data?
same question.
Hey Nikita, Why my post request data is not reflecting on the typicode server?
Is this method only retrieve data from github. How can i update the json data on github.
i got a white screen with any error why ?
just right on point and effective !
thank you so much.