An open API service indexing awesome lists of open source software.

https://github.com/mattfors/flask-sandbox

Exploratory repository for testing Flask setups, integrations, and tools.
https://github.com/mattfors/flask-sandbox

flask

Last synced: 2 months ago
JSON representation

Exploratory repository for testing Flask setups, integrations, and tools.

Awesome Lists containing this project

README

          

# flask-sandbox
Exploratory repository for testing Flask setups, integrations, and tools.

## Prerequisites

- [Anaconda](https://www.anaconda.com/products/distribution) installed on your system

## Setup

1. **Clone the repository:**

```sh
git clone
cd
```

2. **Create the conda environment:**

```sh
conda env create -f environment.yml
```

3. **Activate the conda environment:**

```sh
conda activate flask-sandbox
```

## Running the Application

1. **Start the Flask server:**

```sh
python app.py
```

2. **Open your browser and navigate to:**

```
http://localhost:5000
```

You should see "Hello, World!" displayed on the page.