angular-app icon indicating copy to clipboard operation
angular-app copied to clipboard

Can't change the Local Json setting to use Crud

Open crunchytoast opened this issue 3 years ago • 1 comments

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;`

crunchytoast avatar Nov 12 '20 04:11 crunchytoast

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

ganatan avatar Nov 25 '20 10:11 ganatan