Giter Site home page Giter Site logo

websocket-todo's Introduction

Websocket TODO

A simple example of a TODO app currently utilized at my company for tracking and assigning tasks among team members. Initially, we utilized a Docker image deployed on an Azure Container App. However, over time, we opted to transition to a Raspberry Pi as the WebSocket server. Now, users of the app only require the 'client.js' and 'index.html' files on their devices connected to the internal network to communicate with the WebSocket server and utilize the application.

Raspberry Setup

  • Set up a Raspberry Pi with a static IP address on the same network as the clients who want to use the app.
  • Boot the Raspberry Pi using SSH.
  • Create a systemd service.
sudo nano /etc/systemd/system/webapp.service

Config file:

[Unit]
Description=WebApp
After=network.target

[Service]
User=marco
WorkingDirectory=/home/marco/code/webapp
ExecStart=python server.py
Restart=always

[Install]
WantedBy=multi-user.target

then execute,

sudo systemctl daemon-reload
sudo systemctl enable webapp.service
sudo reboot

After the reboot, you can check the status of the service with the command:

sudo systemctl status teose.service

You have to check if the service is "enabled."

websocket-todo's People

Contributors

marcosalvalaggio avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.