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

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.

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`