Project repository for DB classes.
- Decide on APIs being used and add them to the README
- Decide on how React is going to get its data: via Python API or React Connector
- PyCharm Professional is needed
2. Go to View > Tool Windows > Database.
3. Click '+' > MySQL > SSH/SSL
4. Fill in the form as below:
[g01@bazy ~]$ python --version
Python 3.6.8
[g01@bazy ~]$ npm --version
6.14.4
[g01@bazy ~]$ node --version
v10.21.0
[g01@bazy ~]$ git --version
git version 2.27.0
- Download, extract and install Node Version Manager
- Run nvm.exe in the choosed location.
- Check Node Version Manager's verison:
PS C:\nvm>nvm version
1.1.7
- Check current NodeJS version installed locally
PS C:\nvm> node --version
v12.18.4
-
As a workaround, copy settings.txt file to the C:/ root location.
-
NodeJS version should coincide with the version on the server.
PS C:\nvm>nvm install v10.21.0
Downloading node.js version 10.21.0 (64-bit)...
Complete
Creating C:\nvm\temp
Downloading npm version 6.14.4... Complete
Installing npm v6.14.4...
Installation complete. If you want to use this version, type
nvm use 10.21.0
- Check every NodeJS version available locally that is under control of Node Version Manager
PS C:\nvm>nvm list
10.21.0
- Switch to the 10.21.0 version.
PS C:\nvm>nvm use 10.21.0
Now using node v10.21.0 (64-bit)
PS C:\nvm> nvm ls
* 10.21.0 (Currently using 64-bit executable)
- NodeJS version has been globally switched (compare to the result from 4th point)
PS C:\WINDOWS\system32> node --version
v10.21.0
- Make sure that nvm commands works both on PowerShell, cmd and Linux Terminal. Sometimes, nvm reinstallation may be required.
PS Success! Created frontend at C:\Dev\covid19-statistics\frontend
Inside that directory, you can run several commands:
npm start
Starts the development server.
npm run build
Bundles the app into static files for production.
npm test
Starts the test runner.
npm run eject
Removes this tool and copies build dependencies, configuration files
and scripts into the app directory. If you do this, you can’t go back!
We suggest that you begin by typing:
cd frontend
npm start
PS C:\Dev\covid19-statistics\frontend> npm start
Starting the developement server:
Compiled successfully!
You can now view frontend in the browser.
Local: http://localhost:3000
On Your Network: http://192.168.56.1:3000
Note that the development build is not optimized.
To create a production build, use npm run build.