- The
python
programming language, which can be downloaded from python.org - The python packages
Flask
andFrozen_Flask
- These can be installed by running
python3 -m pip install -r requirements.txt
within the same folder that the code is in
- These can be installed by running
- On Github, fork oxyos/oxyos.github.io
- Either using GitKraken (highly recommended), any other git GUI, or the command line, clone the repo
- For GitKraken: In the Remote section of the left panel in GitKraken, click the "+" button and add the forked repo as a remote
- To develop, run the following command to start the built-in flask web server:
- MacOS/Linux/Windows:
python3 main.py
- MacOS/Linux/Windows:
- This will start the server on port
5000
on your machine, open any browser (Chrome, Firefox, Safari, etc...) and navigate tolocalhost:5000
commit
andpush
the changes to your forked repo'smaster
branch- Go to your forked copy of the repo on Github, and open a pull request from your master branch to oxyos/oxyos.github.io/master
- Run
git pull
to get all the changes