Notify is asynchronous app for creating notes based on aiohttp.
If you want to get a copy of this app for your personal usage, please follow the instructions below.
git clone https://github.com/rozumalex/notify
pip install poetry
Note: you need to get to the directory with the project, then you can run the command:
poetry install
sudo apt install postgres psycopg2 -y
sudo -u postgres psql
CREATE DATABASE <DATABASE_NAME>;
CREATE ROLE <USER_NAME> WITH ENCRYPTED PASSWORD '<PASSWORD>';
GRANT ALL PERMISSIONS ON DATABASE <DATABASE_NAME> TO <USER_NAME>;
ALTER USER <USER_NAME> CREATEDB;
Note: insert your personal data.
postgres:
database: DATABASE_NAME
user: USER_NAME
password: PASSWORD
host: localhost
port: 5432
site:
secret_key: SECRET_KEY
lang: en
charset: utf-8
site_name: SITE_NAME
poetry shell
python app.py
This project is licensed under the MIT License - see the LICENSE file for details.