This is the multi-page printable view of this section. Click here to print.

Return to the regular view of this page.

Quick Start

    Your First 5 Minutes

    This tutorial gets you productive with Piglet Run in 5 minutes.

    Access Your Environment

    After installation, access your environment:

    ServiceURLDefault Credentials
    Homepagehttp://<ip>/None
    VS Codehttp://<ip>/codeSee /data/code/config.yaml
    Jupyterhttp://<ip>/jupyterToken in logs
    Grafanahttp://<ip>/uiadmin / admin

    Create Your First Project

    1. Open VS Code

    Navigate to http://<ip>/code in your browser.

    2. Open Terminal

    Press Ctrl+` to open the integrated terminal.

    3. Create a Project

    cd ~/workspace
    mkdir my-first-project
    cd my-first-project
    

    4. Create a Simple App

    Create app.py:

    from http.server import HTTPServer, SimpleHTTPRequestHandler
    
    print("Server running on http://localhost:8000")
    HTTPServer(('', 8000), SimpleHTTPRequestHandler).serve_forever()
    

    5. Run It

    python app.py
    

    Connect to PostgreSQL

    psql postgres://postgres@localhost/postgres
    

    Or in Python:

    import psycopg
    conn = psycopg.connect("postgres://postgres@localhost/postgres")
    

    Next Steps