https://github.com/magnitopic/orbe
Proyects made with Python using Flask
https://github.com/magnitopic/orbe
api flask python web
Last synced: 2 months ago
JSON representation
Proyects made with Python using Flask
- Host: GitHub
- URL: https://github.com/magnitopic/orbe
- Owner: magnitopic
- Created: 2021-06-16T07:40:39.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-05-31T19:16:13.000Z (about 4 years ago)
- Last Synced: 2025-01-19T13:55:53.529Z (over 1 year ago)
- Topics: api, flask, python, web
- Language: Python
- Homepage:
- Size: 2.21 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ORBE
Proyects made with Python using Flask.
Deployed in:
https://magnitopic.pythonanywhere.com

# Virtual env
Install the virtualenv package and create it. Make sure your in the proyect folder.
```bash
pip install virtualenv
virtualenv orbe
```
## Activate VirtualEnv on Linux
```bash
source orbe/bin/activate
```
## Activate VirtualEnv on Windows
```powershell
orbe\Scripts\activate
```
And to deactivate it on any operating system.
```bash
deactivate
```
# Install dependencies
```bash
pip install -r requirements.txt
```
# Run
```bash
python app.py
```