Skip to content

Commit d2c7e80

Browse files
committed
Updates
1 parent eef0992 commit d2c7e80

22 files changed

+26016
-52
lines changed

.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
REACT_APP_API_URL="https://"

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
# production
1212
/build
1313

14+
# python
15+
/api/venv
16+
1417
# misc
18+
.env
1519
.DS_Store
1620
.env.local
1721
.env.development.local

api/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Flast Backend for Agromate - SL
2+
3+
## Available Scripts
4+
5+
## Virtual Environment Setup
6+
7+
### `python3 -m venv venv`
8+
9+
### `. venv/bin/activate`
10+
11+
### `pip install Flask`

api/api.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from flask import Flask
2+
app = Flask(__name__)
3+
@app.route('/')
4+
def hello_world():
5+
return 'Hello world!'

0 commit comments

Comments
 (0)