You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
flask-example/README.md

38 lines
809 B
Markdown

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# Flask
Flask is --- (2 sentences)
## SET UP
First clone the repository (aka repo)
```git clone https://git.xpub.nl/manetta/flask-example.git```
then move in to the folder
```cd flask-example```
Create virtual environment (need explanation what is virtual environment and why this is needed `---> wiki⛄`)
This will create a virtual environment in a folder called venv.
(the first venv is the command, the second venv is the name of the folder)
[Virtual Environment](wiki/Home_hello)
```python3 -m venv venv```
Install requirements.
We are taking the list of packages to install from a file called `requirements.txt` (maybe more on that in the wiki?)
```pip install -r requirements.txt```
## RUN LOCALLY
- run python
## RUN GLOBALLY..?
## How to manage Locally and globally
use git