Code Monkey home page Code Monkey logo

jublia's Introduction

Flask

Requirements

  • Python 3.7
  • IDE

Set Up

  • Create an virtual enviroment and make sure to run inside it
  • Run pip install -r requirements.txt to install the dependencies
  • create database named jublia
  • Run redis in port 6379

Set Up environment variables (Linux)

Set up environment variable from root project directory Set for development mode

export FLASK_ENV=development
export FLASK_APP=manage.py
export DATABASE_URL=postgresql://postgres:postgres@localhost:5432/jublia

Set Up database

Set up environment variable from root project directory Set for development mode

python manage.py create_db
python manage.py seed_db

Run the scheduler

celery -A app.celeryconf.celery worker --loglevel=INFO --detach --pidfile=''

celery -A app.celeryconf.celery beat --loglevel=INFO --detach --pidfile=''

Run tests

Run this command and access the web app at localhost:5000

pytest -vv

Run

Run this command and access the app app at localhost:5000. You can check curl.sh to access di API

python manage.py run -h 0.0.0.0

Run in docker

P.S. Currently not working, please run locally without docker

docker-compose up -d --build

App running on localhost:5000. You can check curl.sh to access di API

Post email with curl

curl -X POST -H "Content-Type: application/json"  http://localhost:5000/save_emails --data '{"event_id": "1", "email_subject": "A good seminar", "email_content": "You should come to this seminar", "timestamp": "2021-12-14 20:02:00"}'

Scheduler

The scheduler will run every 4 seconds and check if any email need to send on the time based on the timestamp data in database, email sent simulates by updating status field in emails table from Unsend to sent

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

jublia's People

Contributors

chud-lori avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.