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
- Host: GitHub
- URL: https://github.com/ocskier/kitchen-sink
- Owner: ocskier
- License: mit
- Created: 2022-07-29T16:17:08.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-24T17:55:40.000Z (almost 4 years ago)
- Last Synced: 2025-03-04T03:41:45.617Z (over 1 year ago)
- Topics: flask, graphql, javascript, python, react-redux, reactjs, typescript
- Language: TypeScript
- Homepage: https://2b8pmppzvv.us-east-2.awsapprunner.com/
- Size: 1.54 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```