Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mckib2/monkeys-to-bananas
https://github.com/mckib2/monkeys-to-bananas
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mckib2/monkeys-to-bananas
- Owner: mckib2
- Created: 2020-06-15T16:10:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-25T04:50:06.000Z (about 3 years ago)
- Last Synced: 2024-10-31T10:12:07.068Z (2 months ago)
- Language: Python
- Size: 246 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# monkeys-to-bananas
## Environment Setup
Clone the repo:
git clone https://github.com/mckib2/monkeys-to-bananas.git
I use `venv` for my virtual environments. You can create one like this:
python3 -m venv /path/to/virtual/environment
If you are on Linux, you may be prompted to install extra development
tooling and libraries like `python3.x-venv`.To activate and deactive the environment, do this:
# activate
source [path to virtual environment]/bin/activate# deactive
deactiveTo remove the virtual environment, simply delete the directory
where you installed it.To install all the required dependencies, use the `requirements.txt`
file in the root of the repository:pip install -r requirements.txt
## Starting the Server
We use Flask. There is an included development server built in that can
be started by running the `start_server.py` script:python start_server.py