Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cithukyaw/flaskcontactmanager
A simple full stack tutorial application using Python (Flask) + JavaScript (React)
https://github.com/cithukyaw/flaskcontactmanager
Last synced: about 17 hours ago
JSON representation
A simple full stack tutorial application using Python (Flask) + JavaScript (React)
- Host: GitHub
- URL: https://github.com/cithukyaw/flaskcontactmanager
- Owner: cithukyaw
- Created: 2024-05-24T08:54:42.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-05-24T09:42:19.000Z (6 months ago)
- Last Synced: 2024-09-08T14:34:51.896Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 180 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FlaskContactManager
A simple full stack application using Python + JavaScript.
- [Backend](backend/) - Python with Flask and SQLite for the backend
- [Frontend](frontend/) - JavaScript with React for the frontendReference: https://www.youtube.com/watch?v=PppslXOR7TA
## Run Backend
cd backend
# create virtual environment (windows)
py -3 -m venv .venv# activate the environment (windows)
.venv\Scripts\activate# install dependencies
pip install -r requirements.txt# run app
flask --app main run## Run Fronend
cd frontend
# install dependencies
npm install# run app
npm run dev