more changes

This commit is contained in:
Neil Parikh 2021-06-06 21:56:07 -04:00 committed by Aditya Thakral
parent f16be2231f
commit 55c28ee8dc
5 changed files with 55 additions and 41 deletions

View File

@ -1,15 +1,15 @@
### Steps to Deploy
- move contents of frontend/ to /srv/www-csc-links/
- create a `.env` file in backend/ with following contents:
- move contents of static/ to /srv/www-csc-links/
- create a `.env` file in server/ with following contents:
```
PASSWORD=...
PORT=...
```
- run the following in backend/:
- Install the pip dependencies. One possible way to do so is to run the following in server/:
```
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```
- run python app in backend/ (with the virtual env activated)
- run server.py in server/ (with the pip dependencies installed)
- edit the `.htaccess` file in /srv/www-csc-links/ to point to the running python application

View File

@ -18,5 +18,6 @@ types-Jinja2==0.1.0
types-MarkupSafe==0.1.3
types-typing-extensions==3.7.2
types-Werkzeug==0.1.1
waitress==2.0.0
Werkzeug==1.0.1
wrapt==1.12.1

13
backend/server.py Normal file
View File

@ -0,0 +1,13 @@
from waitress import serve
from main import app, DB_PATH, regen_html, out_path
from setup_db import migrate_0
import os
if not os.path.exists(DB_PATH):
migrate_0()
with app.app_context():
regen_html(out_path)
port = int(os.environ.get("PORT") or 3000)
serve(app, host='0.0.0.0', port=port)

View File

@ -1,6 +1,7 @@
import sqlite3
import os
def migrate_0():
DB_PATH = os.path.join(os.path.dirname(__file__), 'links.db')
con = sqlite3.connect(DB_PATH)
@ -34,3 +35,6 @@ else:
con.commit()
con.close()
if __name__ == "__main__":
migrate_0()

View File

@ -8,15 +8,11 @@ NODE_ENV=production npx tailwindcss-cli@latest build index.in.css -o index.out.c
cd ..
npm run build && npm run export
cd ..
mv frontend/out build/frontend
mv frontend/out build/static
# Backend
cd backend
source venv/bin/activate
if [ ! -f links.db ]; then
python3 setup_db.py
fi
cd ..
rsync -ax --exclude venv backend/ build/backend
rsync -ax --exclude venv --exclude links.db --exclude .env backend/ build/server
cp README-deploy.md build
cp README-deploy.md build/README.md
tar -cf linklist.tar build