Setting up Project Backend
Set up a project back-end using Python, Flask, and Node.js.
We’ll start this project with a clean slate and walk through each step to set up the development environment. The following are some of the project requirements that must be met:
- Python 3.9.0 or higher should be installed.
- Node.js server (npm) should be installed.
This is already available on the Educative platform.
Initial setup
We’ll start by creating the main bookapp/
project folder. Then, we’ll jump right into the bookapp/
folder and initialize a Git repository from a command prompt using the following commands.
Create a directory:
mkdir bookapp
Change into the directory:
cd bookapp
Initialize git
:
git init