University Project
About
I made this web app to finish a project assigned by my teacher. It is written entirely in Python, thanks to streamlit to make it possible.
It contains three games. The games are:
- Guess Number
- Guess Word
- Tic Tac Toe
Installation and usage
You can either run it on your local machine (localhost) or host it on a server, in my case I use Heroku.
Local
-
Clone this repository. Make sure git is installed and run:
git clone https://github.com/ccrsxx/University-Project.git
-
Install the dependencies with pip. Run:
pip install -r requirements.txt
-
Run the web app. Run:
streamlit run app.py
Heroku
-
Clone this repository. Make sure git is installed and run:
git clone https://github.com/ccrsxx/University-Project.git
-
Login to your Heroku account. Make sure heroku-cli is installed and run:
heroku login
-
Create the app name, this will be your site name. Run:
heroku create sample_app
-
Push all the files to Heroku. Run:
git push heroku master