Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arshadak1/food-recipe-finder
https://github.com/arshadak1/food-recipe-finder
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arshadak1/food-recipe-finder
- Owner: arshadak1
- Created: 2022-09-29T17:03:56.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-29T17:22:02.000Z (about 2 years ago)
- Last Synced: 2024-01-14T21:00:17.814Z (12 months ago)
- Language: CSS
- Size: 5.85 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Food-Recipe-Finder
## Setup
The first thing to do is to clone the repository:
```sh
$ git clone https://github.com/arshadak1/Food-Recipe-Finder.git
$ cd Food-Recipe-Finder
```Create a virtual environment to install dependencies in and activate it:
```sh
$ python -m venv env
$ source env/bin/activate
```Then install the dependencies:
```sh
(env)$ pip install -r requirements.txt
```
Note the `(env)` in front of the prompt. This indicates that this terminal
session operates in a virtual environment set up by `virtualenv2`.Once `pip` has finished downloading the dependencies:
```sh
(env)$ python manage.py runserver
```
And navigate to `http://127.0.0.1:8000`.