An open API service indexing awesome lists of open source software.

https://github.com/kongr45gpen/hypsign

Digital signage, without opinions
https://github.com/kongr45gpen/hypsign

digital-signage

Last synced: 3 months ago
JSON representation

Digital signage, without opinions

Awesome Lists containing this project

README

          

# hypsign

**The web-based digital signage solution that doesn't care about your signage.**

## Installation
First, set up a `venv` for your project.
```bash
python3 -m venv venv
source venv/bin/activate
```

Then, install project dependencies:
```bash
pip install -r requirements.txt
```

Then, apply the migrations:
```bash
python manage.py migrate
```

Override any local settings in `hypsign/local_settings.py`:
```python
# hypsign/local_settings.py
ALLOWED_HOSTS = ['*']
```

Finally, create a superuser:
```bash
python manage.py createsuperuser
```

and now run the development server:
```bash
python manage.py runserver
```

You also need to run the background task runner:
```bash
python manage.py qcluster
```