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
- Host: GitHub
- URL: https://github.com/kongr45gpen/hypsign
- Owner: kongr45gpen
- License: gpl-3.0
- Created: 2023-03-14T01:20:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-01T11:06:00.000Z (over 2 years ago)
- Last Synced: 2025-04-04T21:29:53.976Z (7 months ago)
- Topics: digital-signage
- Language: Python
- Homepage:
- Size: 137 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```