Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# 0x
profile-*

# mac files
.DS_Store

# vim swap files
*.swp

# webstorm
.idea

# vscode
.vscode
*code-workspace

# clinic
profile*
*clinic*
*flamegraph*

# generated code
examples/typescript-server.js
test/types/index.js

# compiled app
dist
.env
96 changes: 0 additions & 96 deletions backend/README-1-2-YEARS.md

This file was deleted.

3 changes: 0 additions & 3 deletions backend/README-3-5-YEARS.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,17 @@ Replace `firstname-lastname` with your actual name.
### 4. Implementation

1. Create an API with:

- User authentication (login/register)
- Public endpoints
- Protected endpoints (requiring authentication)

2. Implement these endpoints:

- `POST /api/auth/register` - User registration
- `POST /api/auth/login` - User login
- `GET /api/weather` - Get weather data (protected route)
- Any additional endpoints you think are necessary

3. Integrate with a weather API of your choice:

- Fetch weather data based on city or coordinates
- Return it to the client through your API

Expand Down
101 changes: 0 additions & 101 deletions backend/README-5-YEARS-Plus.md

This file was deleted.

Loading