Skip to content
This repository has been archived by the owner on Mar 2, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1 from linuxluigi/feature/websocket-chat
Browse files Browse the repository at this point in the history
Feature/websocket chat
  • Loading branch information
linuxluigi committed Jun 24, 2019
2 parents 50b6841 + 2f1f106 commit 3bc275a
Show file tree
Hide file tree
Showing 74 changed files with 2,344 additions and 203 deletions.
1 change: 1 addition & 0 deletions .env-example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SERIAL_USB_PORT=/dev/cu.usbmodem143301
16 changes: 16 additions & 0 deletions .envs/.local/.serial
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# LoRaSerial
# ------------------------------------------------------------------------------
CARRIER_FREQUENCY=433000000
POWER=20
BANDWIDTH=6
SPREADING=10
ERROR_CORRECTION_CODE=1
CRC=1
IMPLICIT_HEADER=0
ONE_TIME_RECEPTION=0
FREQUENCY_MODULATION=0
FREQUENCY_MODULATION_PERIOD=0
RECEIVE_TIMEOUT_TIME=3000
USER_DATA_LENGTH=8
PREAMBLE=4
DEVICE_ADDRESS=0010
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -330,3 +330,5 @@ pylorawebchat/media/
.env
.envs/*
!.envs/.local/

.sass-cache
19 changes: 19 additions & 0 deletions .idea/deployment.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 13 additions & 14 deletions .idea/pylorawebchat.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 37 additions & 7 deletions .idea/runConfigurations/migrate.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

73 changes: 55 additions & 18 deletions .idea/runConfigurations/runserver.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions .idea/runConfigurations/runserver_plus.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions .idea/watcherTasks.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/webServers.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml

# Optionally build your docs in additional formats such as PDF and ePub
formats: all

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
install:
- requirements: docs/requirements.txt
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: true
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq build-essential gettext python-dev zlib1g-dev libpq-dev xvfb
- sudo apt-get install -qq libtiff4-dev libjpeg8-dev libfreetype6-dev liblcms1-dev libwebp-dev
- sudo apt-get install -qq libjpeg8-dev libfreetype6-dev libwebp-dev
- sudo apt-get install -qq graphviz-dev python-setuptools python3-dev python-virtualenv python-pip
- sudo apt-get install -qq firefox automake libtool libreadline6 libreadline6-dev libreadline-dev
- sudo apt-get install -qq libsqlite3-dev libxml2 libxml2-dev libssl-dev libbz2-dev wget curl llvm
Expand Down

0 comments on commit 3bc275a

Please sign in to comment.