An open API service indexing awesome lists of open source software.

https://github.com/ocskier/kitchen-sink

Building an app from the ground up with Flask, GraphQL, React, Redux, and Typescript
https://github.com/ocskier/kitchen-sink

flask graphql javascript python react-redux reactjs typescript

Last synced: 3 months ago
JSON representation

Building an app from the ground up with Flask, GraphQL, React, Redux, and Typescript

Awesome Lists containing this project

README

          

# Kitchen-sink

## Installation

Make sure pipenv is installed - if on Mac:

```bash
brew install pipenv
```
if on Windows:
[Installation](https://www.pythontutorial.net/python-basics/install-pipenv-windows/)

Ensure Node conformity, running 16.x for development:

Installation of [NVM](https://tecadmin.net/install-nvm-macos-with-homebrew/) on Mac
or Windows: [NVM](https://dev.to/skaytech/how-to-install-node-version-manager-nvm-for-windows-10-4nbi)

on Mac:
```node
nvm use --lts
```

on Win:
```node
nvm use 16.17.0
```

Project level packages installed with npm or pipenv:

i.e.
```python
pipenv install mongoengine
```
```node
npm install dotenv
```

.flaskenv
```node
FLASK_ENV=development
FLASK_APP=./server/src/main.py
FLASK_RUN_PORT=5001
```