git-ahi / admin-api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to set up

  • Rename the .env.sample file to .env and add all listed entries

  • Install pipenv:
    pip install pipenv

  • Check if pipenv is installed:
    pipenv --version
    >> pipenv, version 2018.11.26

  • Spawn a shell in a virtual environment
    pipenv shell

  • List all dependencies currently installed
    pipenv lock -r

  • Install dependencies in piplock file
    pipenv sync

  • Install new dependency
    pipenv install <dependency name here>

  • Regenerate lock file after new dependency installations
    pipenv lock

  • Uninstall dependency
    pipenv uninstall <dependency name here>

  • Turn off a virtual environment
    exit

About


Languages

Language:Python 99.2%Language:HTML 0.8%Language:Procfile 0.0%