Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1.73 KB

README.md

File metadata and controls

65 lines (42 loc) · 1.73 KB

LedWallApp

IMPORTANT to deploy the APP on the BeagleBoneBlack Linux board, you should look at README in BeagleBoneBlackLinux directory

Web application deployed on any Linux to control the Polytech' Tours LedWall.

  • front : expressjs
  • back : angular 7
LedWall Web Application

Project Report : LEDWall_Report_JLH_CDT_CLN_ARI_SSI_LTS.pdf

Running the app

To run the project, you need to have node installed with npm and Angular CLI.

  1. Clone project
  2. Go in front folder
  3. npm install
  4. ng serve
  5. Go in back folder
  6. npm install
  7. node server.js
  8. Navigate to http://localhost:4200/

Deploying the app

run : sudo -s source ./project_install.sh

or ...

If you intend to deploy your app onto a device with small amount of memory, it would be wise to run the app with this method instead.

  1. Clone project
  2. Go in front folder
  3. npm install
  4. ng build --prod
  5. Go in back folder
  6. npm install
  7. NODE_ENV=production node server.js
  8. Navigate to http://localhost:8080/

Config

Change default piskel size when opening the editor : front/src/assets/piskel-editor/js/piskel-packaged-2015-09-02-11-47.js (11782)

Secure front access with the command below : sudo htpasswd -c .htpasswd ledwall

Sources