Changes... Contact info and requirements

Added some preliminary contact info for matrix. I also added some notes to install.txt and will eventually make that into a proper guide.
master
Hailey Clark 3 years ago
parent c5781755c2
commit 5d8cb32663
  1. 7
      INSTALL.txt
  2. 2
      requirements.txt
  3. 4
      templates/include/matrix-contact.html
  4. 1
      templates/matrix.html

@ -14,16 +14,19 @@ Create the enviroment
# For me I got.... # For me I got....
# pywebpush 1.11.0 requires requests>=2.21.0, but you have requests 2.9.1 which is incompatible. # pywebpush 1.11.0 requires requests>=2.21.0, but you have requests 2.9.1 which is incompatible.
~ cd .. ~ cd ..
Edit config.ini Edit config.ini
Edit public_key.txt and private_key.txt. I dont know what these are just yet. Edit public_key.txt and private_key.txt. I dont know what these are just yet.
~ waitress-serve.exe --listen=*:5000 smsproj:app
LINUX ENV Install LINUX ENV Install
Create enviroment Create enviroment
~ python3 -m venv venv ~ python3 -m venv venv
Then activate enviroment and install requirements.
~ source ./venv/bin/activate ~ source ./venv/bin/activate
~ pip install -r requirements.txt ~ pip install -r requirements.txt
Then when you're ready you can run the following command.
~ gunicorn smsproj:app ~ gunicorn smsproj:app

@ -6,7 +6,7 @@ click>=8.1.3
cryptography>=37.0.2 cryptography>=37.0.2
dateutils>=0.6.12 dateutils>=0.6.12
Flask>=2.1.2 Flask>=2.1.2
-e git+https://github.com/flowroute/flowroute-sdk-v3-python.git -e git+https://github.com/hailey/flowroute-sdk-v3-python.git
gunicorn>=20.1.0 gunicorn>=20.1.0
http-ece>=1.1.0 http-ece>=1.1.0
idna>=3.3 idna>=3.3

@ -0,0 +1,4 @@
<div id='matrix-contact'>
<h1>Contact</h1>
<h2>Admin is @hailey:thewords.faith</h2>
</div>

@ -9,4 +9,5 @@ $("document").ready(function() {
{% include 'include/navblock.html' %} {% include 'include/navblock.html' %}
<h1>TheWords.faith Matrix Page</h1> <h1>TheWords.faith Matrix Page</h1>
{% include 'include/matrix-info.html' %} {% include 'include/matrix-info.html' %}
{% include 'include/matrix-contact.html' %}
{% include 'include/footer.html' %} {% include 'include/footer.html' %}

Loading…
Cancel
Save