Skip to content

ivanch/notificc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NotificC - Get notified when a website changes

Codacy grade LGTM Alerts

Features

  • Auth Page
  • Push Notifications (allows multiple devices)
  • Website change logs

Deploy (Docker)

docker run --name notificc -d \
    -m 150m \
    -p 8800:80 \
    -v $PWD/data:/api/shared \
    ivanch/notificc:latest

With SSL:

docker run --name notificc -d \
    -m 150m \
    -p 8800:80 \
    -v $PWD/data:/api/shared \
    -v /path/to/certs:/etc/nginx/certs \
    --env SSL_CERT=example.com.crt \
    --env SSL_KEY=example.com.key \
    ivanch/notificc:latest

Build Docker Image

You'll have to build the image again if you don't want to use default http://example.domain as the service URL.

  1. Clone this repo with git clone https://github.com/ivanch/notificc
  2. Run docker build -t ivanch/notificc:latest --build-arg PUBLIC_URL=http://DOMAIN/PATH .
  3. Deploy

Usage

Default password is password, you can change or disable that later in Settings.

Once at the index page, you can start/stop the checker by clicking at its status badge.

Screenshot

Index page

Development

  1. Run pip install -r api/requirements.txt to install all the requirements.
  2. Go to web folder, run npm install to install dependencies and npm start to start the development server.
  3. Go to api folder and run python app.py to start the API server.