File tree Expand file tree Collapse file tree 2 files changed +5
-15
lines changed
Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Original file line number Diff line number Diff line change @@ -90,16 +90,6 @@ these steps to run the test suite:
9090
9191 We would like to keep code coverage high, ideally above 90%.
9292
93- ## Continuous Integration
94-
95- Tests run automatically in CI via GitHub Actions on all pull requests and pushes to main. The CI workflow runs:
96-
97- - ** Frontend tests** : React/TypeScript tests using Vitest (83 tests)
98- - ** Backend tests** : Python tests using pytest with Docker (42+ tests)
99- - ** Coverage reporting** : Code coverage analysis
100-
101- See ` .github/workflows/test.yml ` for the complete CI configuration.
102-
10393## Run the development server
10494
10595Let's get the development server up and running! Use this command:
Original file line number Diff line number Diff line change @@ -109,11 +109,11 @@ def unauthorized():
109109
110110 app .register_blueprint (health .blueprint )
111111 app .add_url_rule ("/health" , endpoint = "health" )
112-
113- @ app . route ( "/" )
114- def root ():
115- # permanent redirect
116- return redirect ( "/v2" , code = 302 )
112+
113+ # Register the main blueprints for backward compatibility and testing
114+ app . register_blueprint ( index . blueprint )
115+ app . register_blueprint ( leaderboard . blueprint )
116+ app . register_blueprint ( news . blueprint )
117117
118118 if not app .blueprints .get ("api" ):
119119 api = create_api_blueprint ()
You can’t perform that action at this time.
0 commit comments