Skip to content

Commit

Permalink
Merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Mar 22, 2021
2 parents 455be89 + 66563c1 commit c206b4d
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,10 @@ This application can be run in different ways.

2. If you are thinking of hosting it on any hosting platform, use the docker implementation to your advantage and host it easily. Maybe you will need to change the volumes at the **docker-compose** file.

3. Or, in the most complicated way, you must have **Node.JS** installed on your pc.
- To start the server, open the app folder, install and compile by running `npm install` and after `npm run build`. Start by running `npm start`.
- To start the web page, open the web folder, install with `npm install` and build running `npm run build` and `npm run build:server`. Start by running `npm start`.
3. Or, in the most complicated way, you must have **Node.JS** installed on your pc.

- To start the server, open the app folder, install and compile by running `npm install` and after `npm run build`. Start by running `npm start`.
- To start the web page, open the web folder, install with `npm install` and build running `npm run build` and `npm run build:server`. Start by running `npm start`.

## License

Expand Down
20 changes: 10 additions & 10 deletions web/public/index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Steam Trader</title>
</head>
<body>
<div id="app"></div>
</body>
</html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Steam Trader</title>
</head>
<body>
<div id="app"></div>
</body>
</html>
4 changes: 2 additions & 2 deletions web/src/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Trades from '../components/Logs'

import {Container} from 'react-bootstrap';

export default function() {
export default function () {
return (
<Fragment>
<Header />
Expand All @@ -16,4 +16,4 @@ export default function() {
</Container>
</Fragment>
);
}
}
3 changes: 1 addition & 2 deletions web/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
margin: 0;
font-family: sans-serif;
box-sizing: border-box;
}

}
6 changes: 3 additions & 3 deletions web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
// "incremental": true, /* Enable incremental compilation */
"target": "es6" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
"lib": ["DOM", "DOM.Iterable", "ESNext"], /* Specify library files to be included in the compilation. */
"allowJs": true, /* Allow javascript files to be compiled. */
"lib": ["DOM", "DOM.Iterable", "ESNext"] /* Specify library files to be included in the compilation. */,
"allowJs": true /* Allow javascript files to be compiled. */,
// "checkJs": true, /* Report errors in .js files. */
"jsx": "react-jsx", /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */
"jsx": "react-jsx" /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */,
// "declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
Expand Down

0 comments on commit c206b4d

Please sign in to comment.