Changed API_URL from http to https
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
<div align="center">Auto formatted with Prettier, tested with Cypress 🎗</div>
|
<div align="center">Auto formatted with Prettier, tested with Cypress 🎗</div>
|
||||||
|
|
||||||
<h3 align="center">
|
<h3 align="center">
|
||||||
<a href="http://jira.ivorreic.com/">Visit the live app</a> |
|
<a href="https://jira.ivorreic.com/">Visit the live app</a> |
|
||||||
<a href="https://github.com/oldboyxx/jira_clone/tree/master/client">View client</a> |
|
<a href="https://github.com/oldboyxx/jira_clone/tree/master/client">View client</a> |
|
||||||
<a href="https://github.com/oldboyxx/jira_clone/tree/master/api">View API</a>
|
<a href="https://github.com/oldboyxx/jira_clone/tree/master/api">View API</a>
|
||||||
</h3>
|
</h3>
|
||||||
@@ -68,7 +68,7 @@ Not all components have properly defined [aria attributes](https://developer.moz
|
|||||||
|
|
||||||
### Unit/Integration tests 🧪
|
### Unit/Integration tests 🧪
|
||||||
|
|
||||||
Both Client and API are currently tested by through [end-to-end Cypress tests](https://github.com/oldboyxx/jira_clone/tree/master/client/cypress/integration). That's good enough for a relatively simple application such as this, even if it was a real product. However, as the app grows in complexity, it might be wise to start writing additional unit/integration tests.
|
Both Client and API are currently tested through [end-to-end Cypress tests](https://github.com/oldboyxx/jira_clone/tree/master/client/cypress/integration). That's good enough for a relatively simple application such as this, even if it was a real product. However, as the app grows in complexity, it might be wise to start writing additional unit/integration tests.
|
||||||
|
|
||||||
### Author: Ivor Reic ✍️
|
### Author: Ivor Reic ✍️
|
||||||
|
|
||||||
@@ -78,7 +78,7 @@ Both Client and API are currently tested by through [end-to-end Cypress tests](h
|
|||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<h4>
|
<h4>
|
||||||
<a href="http://jira.ivorreic.com/">Visit the live app</a> |
|
<a href="https://jira.ivorreic.com/">Visit the live app</a> |
|
||||||
<a href="https://github.com/oldboyxx/jira_clone/tree/master/client">View client</a> |
|
<a href="https://github.com/oldboyxx/jira_clone/tree/master/client">View client</a> |
|
||||||
<a href="https://github.com/oldboyxx/jira_clone/tree/master/api">View API</a>
|
<a href="https://github.com/oldboyxx/jira_clone/tree/master/api">View API</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|||||||
@@ -195,7 +195,7 @@ const createGuestAccount = async (): Promise<User> => {
|
|||||||
const project = await seedProject(users);
|
const project = await seedProject(users);
|
||||||
const issues = await seedIssues(project);
|
const issues = await seedIssues(project);
|
||||||
await seedComments(issues, project.users);
|
await seedComments(issues, project.users);
|
||||||
return users[0];
|
return users[2];
|
||||||
};
|
};
|
||||||
|
|
||||||
export default createGuestAccount;
|
export default createGuestAccount;
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ module.exports = {
|
|||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
'process.env': {
|
'process.env': {
|
||||||
NODE_ENV: JSON.stringify('production'),
|
NODE_ENV: JSON.stringify('production'),
|
||||||
API_URL: JSON.stringify('http://jira-api.ivorreic.com'),
|
API_URL: JSON.stringify('https://jira-api.ivorreic.com'),
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
|
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
|
||||||
|
|||||||
Reference in New Issue
Block a user