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: 4 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-28T17:32:43.000Z (almost 2 years ago)
- Last Synced: 2025-04-09T09:41:38.416Z (about 1 year ago)
- Topics: birthday, birthday-reminder, flask, flask-application, python
- Language: Jinja
- Homepage:
- Size: 233 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Bday-reminder
[](https://scrutinizer-ci.com/g/Sigmanificient/bday-reminder/?branch=mvp)





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
```