Can't change the Local Json setting to use Crud
Opened this issue · 1 comments
crunchytoast commented
What am I missing? I commented out the local json option but it still doesn't allow me to use the database for crud.
` constructor() {
/*const api = false;
const url = './assets/params/json/';*/
const api = true;
const url = 'http://localhost:5004/';
this.config.api = api;
this.config.url = url;`
ganatan commented
Hi crunchytoast,
I have fix many problems.
you can test.
cd backend
cd postgresql-express-crud
npm install
npm run start
cd frontend
npm install
npm start
And Test with
- default: LOCAL JSON
- LOCAL REST API CRUD : http://localhost:5004
bye