This is a Flask-based backend, which powers a website with games created by the class G1b in Kanti Baden.
- Clone the repository:
git clone https://github.com/CoderAryanAnand/BackendKantiBaden.git
- Change into the project directory:
cd BackendKantiBaden
- Install flask:
pip install -r requirements.txt
If that doesn't work because you are on a Mac, try
python3 -m pip install -r requirements.txt
- Start the Flask development server:
python app.py
On a Mac, you may need to run
python3 app.py
Or you may need to first run
python init_db.py
- Visit
http://localhost:5000
in your web browser to access the application.
Contributions to this project are welcome! Please follow these guidelines when submitting a contribution:
Fork the repository and create a new branch for your changes:
git clone https://github.com/CoderAryanAnand/BackendKantiBaden.git
cd BackendKantiBaden
git checkout -b my-feature-branch
Make your changes and commit them (please write a detailed commit message):
git add .
git commit -m "Added a new feature"
Push your changes to your forked repository:
git push origin my-feature-branch
Open a pull request against the main branch of the original repository.
In the pull request description, please include:
- A summary of the changes made
- The reason for the changes
- Any relevant links or information
Your pull request will be reviewed by the project maintainers, and any necessary changes will be requested. Once your changes have been approved, they will be merged into the main branch.
If you are not familiar with Git, please refer to the official Git documentation or GitHub's Git tutorial.
Thank you for your contributions!
This project is licensed under the terms of the MIT license. See LICENSE
for more information.