Skip to content

A vue + flask based notebook and task manager

Notifications You must be signed in to change notification settings

hanok2/cai-notepad

 
 

Repository files navigation

Cai-Notes

Yet another self-hosted note taking app and TODO list manager.

This version is at pre-alpha version at the moment

Setup for hosting

For development instructions see below.

Using Docker

  1. Prerequisites

    Install docker and docker-compose. See official instructions for installation of Docker and Compose.

  2. Create docker images

    • run docker-compose build to build individual images
    • run docker-compose up
    • or to detach it right away to run it in the background docker-compose up -d

    For further configuration see docker-compose.yaml and Dockerimage files in the source root, and other configuration files in docker/ folder. Detailed in docker.md.

    Note that you also can create your individual Docker images via

    • docker build -t notes-backend -f docker/backend/Dockerfile ./
    • docker build -t notes-frontend -f docker/frontend/Dockerfile ./

Features

TBD, See SPECS.md for rough details

Setup and launching app for development

  1. Prerequisites

To build manually you'll need the following packages installed:

  • Python 3.7 and pip 18.1 (optionally within a virtual environment) for backend
  • Node 11.7 and NPM 6.5 for frontend
  1. Start frontend
cd frontend
npm i
npm run dev
  1. Start backend

Install all the dependencies:

cd backend
pip install Cython && pip install -r requirements.txt && pip install -r requirements-dev.txt
python manage,py createdb
cp dev.env .env
python manage.py runserver
  1. Integrated Development Environment

We prefer Visual Studio code. Therefore an environemnt config is already supplied with the repo, altogether with different .*rc files. The following configuration / linting and quality tools are used:

  • flake8 (Recommended VSCode plugins: Python, Test Explorer UI, Python Test Explorer)
  • eslint (Recommended VSCode plugins: vue, vetur, eslint, beautifyrc)
  • editorconfig (Recommended VSCode plugins: editorconfig)

Contribution

Any contribution ot this project is welcomed, and appreciated, however there isn't any developer guideline set at this moment.

  • For python static code analysis an style check we use flake8, however it's not fully configured.

Running tests

Make sure that requirements for development has been installed pip install -r requirements-dev.txt

  1. backend

    cd backend/
    python tests.py
  2. frontend

    • There's none ATM

Future development

TBD

Known issues

  • On some enviromnent, live reload of the backend app simply doens't work, and stuck.
  • DB restore script doesn't work due foreign key issues on insertion.
  • When DB disconnects, Backand can't recover.

About

A vue + flask based notebook and task manager

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 49.0%
  • JavaScript 23.4%
  • Vue 20.9%
  • SCSS 4.2%
  • Shell 1.8%
  • Dockerfile 0.6%
  • HTML 0.1%