Skip to content

Commit 96959d0

Browse files
committed
Changed API_URL from http to https
1 parent a0ccc9b commit 96959d0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div align="center">Auto formatted with Prettier, tested with Cypress 🎗</div>
44

55
<h3 align="center">
6-
<a href="http://jira.ivorreic.com/">Visit the live app</a> |
6+
<a href="https://jira.ivorreic.com/">Visit the live app</a> |
77
<a href="https://github.com/oldboyxx/jira_clone/tree/master/client">View client</a> |
88
<a href="https://github.com/oldboyxx/jira_clone/tree/master/api">View API</a>
99
</h3>
@@ -68,7 +68,7 @@ Not all components have properly defined [aria attributes](https://developer.moz
6868

6969
### Unit/Integration tests 🧪
7070

71-
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.
71+
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.
7272

7373
### Author: Ivor Reic ✍️
7474

@@ -78,7 +78,7 @@ Both Client and API are currently tested by through [end-to-end Cypress tests](h
7878
<hr>
7979

8080
<h4>
81-
<a href="http://jira.ivorreic.com/">Visit the live app</a> |
81+
<a href="https://jira.ivorreic.com/">Visit the live app</a> |
8282
<a href="https://github.com/oldboyxx/jira_clone/tree/master/client">View client</a> |
8383
<a href="https://github.com/oldboyxx/jira_clone/tree/master/api">View API</a>
8484
</h4>

api/src/database/createGuestAccount.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ const createGuestAccount = async (): Promise<User> => {
195195
const project = await seedProject(users);
196196
const issues = await seedIssues(project);
197197
await seedComments(issues, project.users);
198-
return users[0];
198+
return users[2];
199199
};
200200

201201
export default createGuestAccount;

client/webpack.config.production.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ module.exports = {
6161
new webpack.DefinePlugin({
6262
'process.env': {
6363
NODE_ENV: JSON.stringify('production'),
64-
API_URL: JSON.stringify('http://jira-api.ivorreic.com'),
64+
API_URL: JSON.stringify('https://jira-api.ivorreic.com'),
6565
},
6666
}),
6767
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),

0 commit comments

Comments
 (0)