Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.12 KB

README.md

File metadata and controls

47 lines (29 loc) · 1.12 KB

chronologify

A web application to create playlists of artists' tracks in chronological order.

Technologies

  • Python
  • Poetry for dependency management and packaging

Soon:

  • The Flask web framework

Getting started

Installing prerequisites

  1. Install PyCharm.

  2. Install Homebrew.

  3. Install Poetry via the recommended method.

  4. At this point you might want to close and reopen your terminal.

  5. Test the installation by running poetry --version. You should see something like this:

     Poetry version 1.1.6
    

Setting up your project

Now that your prerequisites are configured, you can set up the project.

  1. Clone this repository.

  2. Open it in PyCharm.

  3. Install Poetry dependencies:

     poetry install
    
  4. Print the location of your Poetry virtual environment:

     poetry env info -p
    
  5. Configure PyCharm to use the above virtualenv.

  6. Close and reopen your terminal.