Code Monkey home page Code Monkey logo

acumer's Introduction

Setup

  • create database acumer
  • enable consumer by calling the api https://reporter.yourdomain.com/v1/events/location/register and pass the body as followings:
{
    // "producer_info": {
    //     "info":{
    //         "local_spawn": true,
    //         "notif_data": { 
    //             "receiver_info": { "id": 1 },
    //             "id": "unqie-id",
    //             "action_data": {
    //                 "pid": 200
    //             }, 
    //             "actioner_info": { "id": 2 }, 
    //             "action_type": "ProductPurchased", 
    //             "fired_at": 1714316645, 
    //             "is_seen": false
    //         }, 
    //         "exchange_name": "wildonionExchange",
    //         "exchange_type": "fanout", // amq.topic for pubsub
    //         "routing_key": "" // routing pattern or key - will be ignored if type is fanout
    //     }
    // },
    "producer_info": null,
    // "consumer_info": null
    "consumer_info": {
        "info": {
            "queue": "RustReporterQ",
            "exchange_name": "Events:LocationEvent",
            "routing_key": "",
            "tag": "cons_tag0",
            "redis_cache_exp": 300,
            "local_spawn": true
        }
    }
}
  • get basic report: https://reporter.yourdomain.com/v1/events/location/stats/get/basic/?imei=&from=&to=

How 2 setup, develop, and deploy?

if you want to deploy as a publisher or producer service then get your hands dirty by developing the apis/http, actors/producers, as a subscriber or consumer however, develop the apis/http, actors/consumers folders.

Dev env

step0) create database

make sure you've created the database using:

sqlx database create

step1) create migration folder (make sure you have already!)

make sure you uncomment the runtime setup inside its Cargo.toml file.

sea-orm-cli migrate init -d migration

step2) create migration files

make sure you've installed the sea-orm-cli then create migration file per each table operation, contains Migrations structure with up and down methods extended by the MigrationTrait interface, take not that you must create separate migration per each db operation when you're in production.

sea-orm-cli migrate generate "table_name"

step3) apply pending migrations (fresh, refresh, reset, up or down)

once you've done with adding changes in your migration files just run the following to apply them in db.

# rollback all applied migrations, then reapply all migrations
sea-orm-cli migrate refresh # or up

step4) generate entity files for ORM operations

generate Rust structures from your applied migrations inside the db for the acumer database in entity/src folder after that you can proceed with editing each eintity like adding hooks for different actions on an active model.

# generate entities for the database and all tables
sea-orm-cli generate entity -u postgres://postgres:geDteDd0Ltg2135FJYQ6rjNYHYkGQa70@localhost/acumer -o src/entities --with-serde both --serde-skip-deserializing-primary-key
# generate entity for an sepecific table only, eg: generating entity for hoops table
sea-orm-cli generate entity -t hoops -o src/entities --with-serde both --serde-skip-deserializing-primary-key
# don't skip deserializing primary key
sea-orm-cli generate entity -u postgres://postgres:geDteDd0Ltg2135FJYQ6rjNYHYkGQa70@localhost/acumer -o src/entities --with-serde both

step4) run server

when you run server with --fresh command it'll fresh all migrations at startup (drop all tables from the database, then reapply all migrations) otherwise it'll only apply migrations (calling up method of all migration files).

# -------------------------------
# ------ acumer server --------
# -------------------------------
# launch as http with freshing db
cargo run --bin acumer -- --server http --fresh # default is http and fresh migrations
# or see help
cargo run --bin acumer -- --help

Prod env

make sure you've opened all necesary domains inside your DNS panel per each nginx config file and changed the your-app.app to your own domain name in every where mostly the nginx config files and the APP_NAME in consts.rs.

# -----------------------
# ---- read/write access
sudo chown -R root:root . && sudo chmod -R 777 . 

๐Ÿš€ the CI/CD approach:

this approach can be used if you need a fully automatic deployment process, it uses github actions to build and publish all images on a self-hosted docker registry on a custom VPS, so update the github ci/cd workflow files inside .github/workflows folder to match your VPS infos eventually on every push the ci/cd process will begin to building and pushing automatically the docker images to the self-hosted registry. instead of using a custom registry you can use either ducker hub or github packages! it's notable that you should renew nginx service everytime you add a new domain or subdomain (do this on adding a new domain), ./renew.sh script creates ssl certificates with certbot for your new domain and add it inside the infra/docker/nginx folder so nginx docker can copy them into its own container! for every new domain there must be its ssl certs and nginx config file inside that folder so make sure you've setup all your domains before pushing to the repo. continue reading...

me before you! (make sure you've done followings properly before pushing to your repo):
  • step1) first thing as the first, connect your device to github for workflow actions using gh auth login -s workflow.

  • step2) run sudo rm .env && sudo mv .env.prod .env then update necessary variables inside .env file.

  • step3) the docker registry service is up and running on your VPS.

  • step4) you would probably want to make logs dir and docker.yourdomain.com routes secure and safe, you can achive this by adding an auth gaurd on the docker registry subdomain and the logs dir inside their nginx config file eventually setup the password for logs dir and docker.yourdomain.com route by running sudo apt-get install -y apache2-utils && htpasswd -c infra/docker/nginx/.htpasswd acumer command, the current one is acumer@1234.

  • step5) setup DOCKER_PASSWORD, DOCKER_USERNAME, SERVER_HOST, SERVER_USER and SERVER_PASSWORD secrets and variables on your repository.

  • step6) setup nginx config and ssl cert files per each domain and subdomain using renew.sh script then put them inside infra/docker/nginx folder, you MUST do this before you get pushed to the repo on github cause there is already an nginx container inside the docker-compose.yml.

  • step7) created a /root/hoopoe folder on your VPS containing the docker-compose.yml file only and update its path inside the cicd.yml file, take this note that the default location and directory for none root users are /home.

  • step8) each image name inside your compose file must be prefixed with your docker hub registry endpoint which in this case is docker.yourdomain.com cause the doamin is already pointing to the docker registry hosted on localhost:5000 on VPS.

What's happening inside the cicd.yml file?
  • step1) read the codes inside the repository to find the docker-compose.yml file.

  • step1) try to login (docker username and password) to your custom docker hub (the registry on your VPS secured with nginx auth gaurd).

  • step2) build all docker container images inside your docker-compose.yml file.

  • step3) eventually it push them to your custom docker hub registry.

  • step4) ssh to the VPS and cd to where you've put the docker-compose.yml file in there then pull and up all pushed docker containers from the VPS hub inside the VPS.

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.