A simple note-taking and file-saving app to run on your local machine.
For transferring files and notes between machines on the same network.
Not suitable for production use. DO NOT EXPOSE TO THE INTERNET. PLEASE.
virtualenv -p python3 ~/.pymicrowiki
source ~/.pymicrowiki/bin/activate
pip install -e.[dev]
alembic upgrade head
python app.py
Then visit http://localhost:5005/
in your browser. On your own network,
visit http://<ip address>:5005/
to access it remotely from another
machine.
- Add model to pymicrowiki/models.py
- Create autogenerated migration: alembic revision --autogenerate -m "What changed"
- Apply migrations: alembic upgrade head