/orlike

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

OrLike Example

This directory is a brief example of a OrLike app that can be deployed with Vercel and zero configuration.

Deployment

Deploy your own OrLike app with Vercel.

Deploy to Vercel

How to Create This Example

index.py:

from orlike import app_orlike as app

if __name__ == '__main__':
    app.run()

Deploying From Terminal

You can deploy your new OrLike project with a single command from your terminal using Vercel CLI:

vercel

Client Configuration

<script src="https://cdn.jsdelivr.net/gh/caibingcheng/orlike@master/orlike.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<div class="orlike-box"></div>
<script>
    new OrLike({
        serverUrl: "https://orlike-vercel-caibingcheng.vercel.app/",
        el: ".orlike-box",
        days: 30,
    });
</script>

Check OrLike for more details.