Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 578 Bytes

File metadata and controls

29 lines (24 loc) · 578 Bytes

Scrawl

Note-taking Software

Installation - get the app, setup virtual environment and install dependencies:

git clone https://github.com/abrdk/Scrawl
cd Scrawl
python3 -m venv ./venv
source venv/bin/activate
pip3 install -r requirements.txt

Start the server:

python3 run.py

Visit localhost:5000 in a browser.

Deactivate virtual environment when done:

deactivate