/react-app-mono-repo

Primary LanguagePythonMIT LicenseMIT

React App mono repo Boilerplate

A simple boilerplate for creating web app´s using Vite, React Js, Javascript, Redux Toolkit and TailwindCss in the Front and Flask, SqlAlchemy, Python and Planet Scale in the Back.

Authors

Documentation

Installation

Install FRONTEND with npm

  cd front
  npm install
  npm run dev

Copy .ENV (Do it in both Front and in Back folders)

cp .env.example .env

Install BACKEND with npm

  cd back
  pipenv install
  pipenv shell
  pipenv run start

Create migrations folder

 pipenv run init

Changes in Models

  pipenv run migrate
  pipenv run upgrade