Best Flask open-source libraries and packages

Updated 1 year ago

Notime

Note-taking application that mimics how you take notes in real life

Get organized with notebooks containing pages, which in turn contain content as you wish

Use Notime's Rich Text Editor to add styles to the content you add to your pages.

Built with ❤️ by EyePan

Try it out

Notime is out here if you want to try it out

Build it yourself

Requirements

  1. Clone the backend repository to it's own folder (preferably)
mkdir backend 
cd backend 
git clone https://github.com/Eyepan/notime-flask-backend 
cd notime-flask-backend
python -m venv venv

Windows:

venv\Scripts\activate.bat

POSIX/Unix/MacOS:

source venv/bin/activate

and finally install requirements

pip install -r requirements.txt
  1. Clone the front-end repository to it's own folder (preferably)
cd ../    # to get to project root
mkdir frontend
cd frontend 
git clone https://github.com/Eyepan/notime-vue
  1. Install all NPM modules and setup environment files
cd frontend/notime-vue
npm i

Edit the .env file here

VITE_API_URL='http://localhost:5000/api/'
  1. Start the Flask server
cd backend/notime-flask-backend
python flask_app.py
  1. Start the front-end vite project
npm run dev

And enjoy! HEllo

Tags sqlite
Package Tags