Cross-Platform Application
I wrote with ❤ in React and MUI components.
# | DATE | TYPE |
---|---|---|
1.0.0-beta.1 | 05.09.2023 | beta |
This command will clone the entire git repository, and will change current working directory to app.
git clone https://www.github.com/kacperfaber/chesstasks-app && cd chesstasks-app
npm install
Fill the const 'config' with your API url and set the API-KEY.
# Edit 'config' const to set configuration properties.
vim webpack.config.dev.js
# Run compilation with configuration properties
npx webpack --config webpack.config.dev.js --env apiKey= --env apiUrl=
Will compile the code, and will host the app with serve.
# Will run compile and serve to localhost.
# Will be used configuration properties from webpack.config.dev.js
npm run run-dev
{
"apiUrl": "URL where API server is running.",
"apiKey": "Security key"
}
Kacper Faber