diff --git a/frontend/README.md b/frontend/README.md
deleted file mode 100644
index d2e7761..0000000
--- a/frontend/README.md
+++ /dev/null
@@ -1,73 +0,0 @@
-# React + TypeScript + Vite
-
-This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
-
-Currently, two official plugins are available:
-
-- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh
-- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
-
-## React Compiler
-
-The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
-
-## Expanding the ESLint configuration
-
-If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
-
-```js
-export default defineConfig([
- globalIgnores(['dist']),
- {
- files: ['**/*.{ts,tsx}'],
- extends: [
- // Other configs...
-
- // Remove tseslint.configs.recommended and replace with this
- tseslint.configs.recommendedTypeChecked,
- // Alternatively, use this for stricter rules
- tseslint.configs.strictTypeChecked,
- // Optionally, add this for stylistic rules
- tseslint.configs.stylisticTypeChecked,
-
- // Other configs...
- ],
- languageOptions: {
- parserOptions: {
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
- tsconfigRootDir: import.meta.dirname,
- },
- // other options...
- },
- },
-])
-```
-
-You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
-
-```js
-// eslint.config.js
-import reactX from 'eslint-plugin-react-x'
-import reactDom from 'eslint-plugin-react-dom'
-
-export default defineConfig([
- globalIgnores(['dist']),
- {
- files: ['**/*.{ts,tsx}'],
- extends: [
- // Other configs...
- // Enable lint rules for React
- reactX.configs['recommended-typescript'],
- // Enable lint rules for React DOM
- reactDom.configs.recommended,
- ],
- languageOptions: {
- parserOptions: {
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
- tsconfigRootDir: import.meta.dirname,
- },
- // other options...
- },
- },
-])
-```
diff --git a/frontend/public/vite.svg b/frontend/public/vite.svg
deleted file mode 100644
index e7b8dfb..0000000
--- a/frontend/public/vite.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/frontend/src/assets/react.svg b/frontend/src/assets/react.svg
deleted file mode 100644
index 6c87de9..0000000
--- a/frontend/src/assets/react.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/handlers/weather.go b/handlers/weather.go
index dbfb8e1..89299b9 100644
--- a/handlers/weather.go
+++ b/handlers/weather.go
@@ -2,6 +2,7 @@ package handlers
import (
"encoding/json"
+ "fmt"
"go-weather/services"
"net/http"
)
@@ -42,7 +43,7 @@ func (h *WeatherHandler) FetchWeather(w http.ResponseWriter, r *http.Request) {
return
}
w.Header().Set("Content-Type", "application/json")
- json.NewEncoder(w).Encode(map[string]interface{}{
+ json.NewEncoder(w).Encode(map[string]any{
"message": "weather fetched and saved",
"id": id,
"city": weather.Name,
@@ -60,6 +61,8 @@ func (h *WeatherHandler) GetHistory(w http.ResponseWriter, r *http.Request) {
city = h.config.DefaultCity
}
readings, err := h.dbService.GetReadings(city, 25)
+ fmt.Printf("Length of readings: %v", len(readings))
+ fmt.Printf("HELLO")
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
diff --git a/services/database.go b/services/database.go
index 0f38f65..26b84a3 100644
--- a/services/database.go
+++ b/services/database.go
@@ -5,6 +5,7 @@ import (
"fmt"
_ "github.com/lib/pq"
"go-weather/models"
+ "log"
"time"
)
@@ -45,7 +46,7 @@ func (s *DatabaseService) CreateTable() error {
`)
if err != nil {
- fmt.Errorf("failed to create table: %v", err)
+ log.Printf("failed to create table: %v", err)
}
fmt.Println("weather_readings table ready")
return nil