Browse Source

Poetry packaging

master
Julio Biason 4 years ago
parent
commit
4d4c3182df
  1. 0
      files/index.html
  2. 0
      files/zepto.min.js
  3. 13
      playbook.yml
  4. 17
      pyproject.toml

0
index.html → files/index.html

0
zepto.min.js → files/zepto.min.js vendored

13
playbook.yml

@ -27,7 +27,16 @@
enablerepo: remi
# Postgres
#
- name: Install PostgreSQL
become: yes
yum:
name: postgresql-server
state: latest
- name: NextCloud database
postgresql_db:
name: nextcloud
# PHP + PHP-FPM
- name: Install PHP
become: yes
@ -45,6 +54,8 @@
- php74-php-pecl-redis5
- php74-php-fpm
state: latest
# Note to self: php-fpm is now in /opt/remi/php74/root/usr/sbin/php-fpm
# NextCloud itself
# Domain

17
pyproject.toml

@ -0,0 +1,17 @@
[tool.poetry]
name = "juliobiason.me"
version = "0.1.0"
description = "Env for holding all the necessary packages for Ansible'ing my server"
authors = ["Julio Biason <julio.biason@pm.me>"]
license = "AGPL-3"
[tool.poetry.dependencies]
python = "^3.9"
ansible = "^2.10.1"
psycopg2 = "^2.8.6"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Loading…
Cancel
Save