RestAPI with Python's FastAPI, for the Hashiwokakero logic puzzle, to generate, solve and get puzzles from the database.
The main hashiwokakero repository is here.
You can also check the playground of hashiwokakero here.
This project is licensed under the GNU GPL-3.0 license.
Although everything is free to use, modify and distribute, credit is always appreciated.
The project is written in Python 3.12.4. Create a virtual environment and activate it.
python -m venv venv
source venv/bin/activateTo install the dependencies, run:
pip install -r requirements.txt
## or
make initThe backend solely relies on the PostgreSQL database, this part will assume we will be running the database on the local machine.
Install PostgreSQL to your machine, and make sure that the server/service is running.
Create a database and preferably a user for the database. After all successfully created, update the DATABASE_URL in the .env file.
To create the tables, run the following command on the project root:
alembic upgrade headTo run the server, execute the following command:
# development/auto-reload mode
uvicorn app.main:app --reload
## or
make devThe server will be running on http://127.0.0.1:8000 or in the port that you specified in the .env file.
Go to the /docs endpoint to see the API documentation.