Skip to content

ToniCipriani/PythonFlask-JobBoard

This branch is 41 commits ahead of, 74 commits behind jonfriskics/PythonFlask-JobBoard:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9688ba7 · Mar 24, 2019

History

97 Commits
Aug 16, 2018
Mar 24, 2019
Sep 27, 2018
Oct 24, 2018
Jul 26, 2018
Mar 21, 2019
Sep 6, 2018
Oct 24, 2018
Sep 27, 2018
Sep 5, 2018
Aug 20, 2018
Sep 11, 2018
Aug 14, 2018

Repository files navigation

Build a Job Board with Python & Flask

Verify Local Environment

Create Virtual Environment

In a terminal run the following commands from the root folder of the forked project.

Windows

python -m venv .\venv

macOS & Linux

python -m venv ./venv

Once that completes, also run this command from the same folder.

Windows

venv\Scripts\activate.bat

macOS & Linux

source venv/bin/activate

Now that you are working in the virtualenv, install the project dependencies with the following command.

pip install -r requirements.txt

Verify Setup

In order to verify that everything is setup correctly, run the following command, which should show you the failing tests. This is good! We'll be fixing this test once we jump into the build step.

pytest

Every time you want to check your work locally you can type that command, and it will report the status of every task in the project.

Previewing Your Work

You can preview your work by running flask run in the root of your fork and then visithttp://localhost:5000 in your browser.

About

Build a Job Board with Python & Flask

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 84.8%
  • HTML 14.7%
  • Other 0.5%