https://github.com/dogukanurker/quizapp
Built with Flask & React.
https://github.com/dogukanurker/quizapp
flask google-developer-groups google-developer-student-club python react typescript vite
Last synced: 2 months ago
JSON representation
Built with Flask & React.
- Host: GitHub
- URL: https://github.com/dogukanurker/quizapp
- Owner: DogukanUrker
- License: mit
- Created: 2024-10-09T16:48:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-30T22:16:18.000Z (over 1 year ago)
- Last Synced: 2025-03-27T02:09:05.773Z (about 1 year ago)
- Topics: flask, google-developer-groups, google-developer-student-club, python, react, typescript, vite
- Language: TypeScript
- Homepage: https://quiz-app-gamma-ochre.vercel.app
- Size: 460 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QuizApp
Built with Flask & React.
## Running the Project
### Clonning the Repo
clone source code from Github
`git clone https://github.com/DogukanUrker/QuizApp.git`
go to directory
`cd QuizApp`
### Backend - Server
go to server directory
`cd server`
create virtual environment
Windows:
`python -m venv venv`
macOS/Linux:
`python3 -m venv venv`
activate virtual environment
Windows:
`.\venv\bin\activate`
macOS/Linux:
`source venv/bin/activate`
install requirements.txt
Windows:
`pip install -r requirements.txt`
macOS/Linux:
`pip3 install -r requirements.txt`
it's ready to run
Windows:
`python app.py`
macOS/Linux:
`python3 app.py`
### Frontend - Client
go to client directory
`cd client`
install packages
`npm install`
it's ready to run 🎉
`npm run dev`