https://github.com/computate-org/computate_sqlite
https://github.com/computate-org/computate_sqlite
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/computate-org/computate_sqlite
- Owner: computate-org
- Created: 2021-12-28T07:04:50.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-10T23:10:39.000Z (almost 4 years ago)
- Last Synced: 2025-04-09T10:23:17.096Z (about 1 year ago)
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install sqlite
## Install the latest Python and setup a new Python virtualenv
```bash
pkcon install -y git
pkcon install -y python3
pkcon install -y python3-pip
pkcon install -y python3-virtualenv
virtualenv-3 ~/python
source ~/python/bin/activate
echo "source ~/python/bin/activate" | tee -a ~/.bashrc
```
## Install the latest Ansible
```bash
pip install setuptools_rust wheel
pip install --upgrade pip
pip install ansible
```
## Install the sqlite ansible role
### Create a directory for the ansible role.
```bash
install -d ~/.ansible/roles/computate.computate_sqlite
```
### Clone the sqlite ansible role.
```bash
git clone git@github.com:computate-org/computate_sqlite.git ~/.ansible/roles/computate.computate_sqlite
```
## Run the sqlite ansible playbook to install the application locally.
```bash
cd ~/.ansible/roles/computate.computate_sqlite
ansible-playbook install.yml
```