Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Jobs and Resource Bookings Management #76

Merged
merged 7 commits into from
Feb 7, 2021
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,21 @@
"axios": "^0.21.0",
"classnames": "^2.2.6",
"express": "^4.17.1",
"final-form": "^4.20.1",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-avatar": "^3.9.7",
"react-datepicker": "^3.4.1",
"react-dom": "^16.12.0",
"react-final-form": "^6.5.2",
"react-outside-click-handler": "^1.3.0",
"react-popper": "^2.2.3",
"react-redux": "^7.2.2",
"react-redux-toastr": "^7.6.5",
"react-select": "^4.0.2",
"react-use": "^15.3.4",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
Expand Down
9 changes: 5 additions & 4 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ const express = require("express");

const app = express();

app.use('/taas-app',
app.use(
"/taas-app",
express.static("./dist", {
setHeaders: function setHeaders(res) {
res.header("Access-Control-Allow-Origin", "*");
Expand All @@ -17,9 +18,9 @@ app.use('/taas-app',
})
);

app.get('/', function (req, res) {
res.send('alive')
})
app.get("/", function (req, res) {
res.send("alive");
});

const PORT = process.env.PORT || 8501;
app.listen(PORT);
Expand Down
14 changes: 14 additions & 0 deletions src/assets/images/icon-bag.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions src/assets/images/icon-computer.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions src/assets/images/icon-description.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/assets/images/icon-money.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions src/assets/images/icon-openings.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading