Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pyramid / docs / quick_tutorial / cookiecutters
  ..
  cc_starter
  pytest.ini
  production.ini
  development.ini
  MANIFEST.in
  .coveragerc
  CHANGES.txt
  setup.py
  README.txt
Size: Mime:
cc_starter
==========

Getting Started
---------------

- Change directory into your newly created project.

    cd cc_starter

- Create a Python virtual environment.

    python3 -m venv env

- Upgrade packaging tools.

    env/bin/pip install --upgrade pip setuptools

- Install the project in editable mode with its testing requirements.

    env/bin/pip install -e ".[testing]"

- Run your project's tests.

    env/bin/pytest

- Run your project.

    env/bin/pserve development.ini