Margie Cao - API implementation
Aditya Anand - Flask, making routes and different functionalities for each
Stella Yampolsky - SQLite3, working with databases
Suhana Kumar - Tailwind FEF, HTML & CSS
Our website serves as a casino simulator! Users are able to gamble their currency away or win big through a multitude of games. Think you have the skills to win? The luck to? Come play! and if you've hit rock bottom, log in tomorrow for your daily paycheck!
Features
- Users will be able to create accounts and log in
- Users can view leaderboards and see their personal bests
- Users can play various different games to boost their score and get money:
- blackjack
- heads or tails
- poker
- dice rolling
1. Clone the repository in the terminal, run:
$ git clone [email protected]:margie3/p01.git
** steps 2 and 3 are not required if you are comfortable with messing with your primary python installation and know your system well enough
2. Make a virtual environment, run:
$ python3 -m venv [name]
3. Activate the virtual environment, run:
$ . [name]/bin/activate
4. Go into the cloned repository, run:
$ cd /PATH/TO/p01
5. Install the required packages in your cloned repository, run:
$ pip install -r requirements.txt
1. In the cloned repository, run:
$ python3 app/__init__.py
2. Open the local host link:
http://127.0.0.1:5000/
When done using the virtual environment, run:
$ deactivate