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.
- Host: GitHub
- URL: https://github.com/mattfors/flask-sandbox
- Owner: mattfors
- License: mit
- Created: 2024-11-30T18:53:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-03T01:44:31.000Z (over 1 year ago)
- Last Synced: 2025-03-29T04:44:52.473Z (over 1 year ago)
- Topics: flask
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.