-
Notifications
You must be signed in to change notification settings - Fork 0
General usage #1
Description
Good morning,
I am curious about how your system works, but I can not make it run.
So far, I have created a docker container to install all your project inside.
docker run -it --rm \
--name nodejs-server \
--workdir /var/app \
-v ${PWD}:/var/app \
-p 4200:4200 \
node:12.6.0-stretch-slim \
bash
then,
apt-get update && apt-get install -y build-essential make python
finally,
ng serve --host 0.0.0.0 --port 4200
Despite some issues in the installation, the frontend can start at 0.0.0.0:4200
I can then access to the website, and upload a file. This file is not well stored on the server side (see picture)

Since it seemed a network issue, I checked the way the upload file looks for data, and decided to put the same file I am uploading in the assets folder. Network issue is solved, but frontend answer still hangs and errors on the console still appears.
Do you have this project already deployed somewhere I can reach?
Happy to help if you need more information about how I tried to run the project.
Thank you !