Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sigmanificient/bday-reminder
A Flask based application for birthday saving.
https://github.com/sigmanificient/bday-reminder
birthday birthday-reminder flask flask-application python
Last synced: 2 months ago
JSON representation
A Flask based application for birthday saving.
- Host: GitHub
- URL: https://github.com/sigmanificient/bday-reminder
- Owner: Sigmanificient
- License: mit
- Created: 2021-06-06T13:14:05.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-18T18:31:39.000Z (10 months ago)
- Last Synced: 2024-03-18T20:12:38.878Z (10 months ago)
- Topics: birthday, birthday-reminder, flask, flask-application, python
- Language: Jinja
- Homepage:
- Size: 227 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Bday-reminder
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Sigmanificient/bday-reminder/badges/quality-score.png?b=mvp)](https://scrutinizer-ci.com/g/Sigmanificient/bday-reminder/?branch=mvp)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/corentin384/bday-reminder)
![GitHub repo size](https://img.shields.io/github/repo-size/corentin384/bday-reminder)
![Lines of code](https://img.shields.io/tokei/lines/github/corentin384/bday-reminder)
![GitHub](https://img.shields.io/github/license/corentin384/bday-reminder)
![GitHub last commit](https://img.shields.io/github/last-commit/corentin384/bday-reminder)A Flask based application for birthday saving.
# Installation
Clone the repository
```bash
git clone https://github.com/Sigmanificient/bday-reminder.git
```*If you are on GNU/Linux, you can use the makefile configuration*
```bash
make
```Otherwise, you must install the dependencies manually.
- Install a python virtualenv (optional)
```bash
python -m venv venv
# Activate the virtualenv
```- Install the bday_reminder package as editable
```bash
pip install -e .
```
- Install Sass cli tool
```bash
yarn install
```- Build the static files
```bash
sass --style compressed bday_reminder/static/scss/style.scss:bday_reminder/static/css/style.css
```- Run the application
```bash
python bday_reminder
```## Create the user
```bash
make user
```Or manually:
```bash
python scripts/dummy.py
```