We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current install instructions don't work on Debian 12.
Here is the way I managed to have a working dev environment:
# start with a fresh Debian 12 install, logged as root apt install git sudo postgresql python3-venv -y adduser folksonomy usermod -aG sudo folksonomy su folksonomy cd ~ git clone https://github.com/openfoodfacts/folksonomy_api.git cd folksonomy_api python3 -m venv folksonomy . ./folksonomy/bin/activate pip install -r requirements.txt sudo -i -u postgres createuser $USER sudo -i -u postgres createdb folksonomy -O $USER yoyo apply --database postgresql:///folksonomy cp local_settings_example.py local_settings.py uvicorn folksonomy.api:app --reload --host <my_ip_address_or_domain_name> # => works
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current install instructions don't work on Debian 12.
Here is the way I managed to have a working dev environment:
The text was updated successfully, but these errors were encountered: