diff --git a/README.md b/README.md index 3a25569..973afd2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ sudo apt install aptitude sudo aptitude install postgresql postgresql-contrib ``` https://tecadmin.net/how-to-install-postgresql-in-ubuntu-20-04/ - +follow all the way through step 3. ### Web application @@ -19,14 +19,14 @@ Download application and configure. sudo apt install libjpeg-dev libpng-dev python3 redis-server postgresql-server-dev-* sudo apt install python3-virtualenv sudo apt install python3-venv -git clone https://github.com/firoorg/fcs.git +git clone https://git.cypherstack.com/marco/epicpost.git cd epicpost python3 -m venv yourvirtualenviornment source yourvirtualenviornment/bin/activate -pip uninstall pillow -pip install wheel -pip install -r requirements.txt -CC="cc -mavx2" pip install -U --force-reinstall pillow-simd +pip3 uninstall pillow +pip3 install wheel +pip3 install -r requirements.txt +CC="cc -mavx2" pip3 install -U --force-reinstall pillow-simd cp settings.py_example settings.py - change settings.py accordingly ``` @@ -35,7 +35,7 @@ eg change the psql_pass to your database password, psql_db to your database name Run the application: ```bash -python run_dev.py +python3 run_dev.py ``` Beware `run_dev.py` is meant as a development server.