Skip to content

Commit

Permalink
Staging
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-sliffe committed Dec 4, 2024
1 parent 037c23d commit b9a924b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Backend/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ def serve(path):
return send_from_directory(app.static_folder, 'index.html')

if __name__ == '__main__':
app.run()
app.run(debug=True)
2 changes: 1 addition & 1 deletion client/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import router from './router';
import './assets/css/style.css';
import axios from 'axios';

axios.defaults.baseURL = 'https://kobrastocks-backend-bse7h2dnhvhjefcd.canadacentral-01.azurewebsites.net';
axios.defaults.baseURL = 'http://127.0.0.1:5000';

const token = localStorage.getItem('token');
if (token) {
Expand Down

0 comments on commit b9a924b

Please sign in to comment.