Below you will find basic setup and deployment instructions for the rapidsms_org project. To begin you should have the following applications installed on your local development system:
- Python >= 3.8 - `pip <http://www.pip-installer.org/>`_ >= 19 - `virtualenv <http://www.virtualenv.org/>`_ >= 1.10 - `virtualenvwrapper <http://pypi.python.org/pypi/virtualenvwrapper>`_ >= 16.0 - Postgres >= 12 - git >= 12.7
First clone the repository from Github and switch to the new directory:
git clone [email protected]:rapidsms/rapidsms.org.git cd rapidsms.org
To setup your local environment you should create a virtualenv and install the necessary requirements:
pipenv shell pipenv sync --dev
Create an .env file in the project home copying .env-template file and fill it properly:
cp .env-template .env
Create the Postgres database and run the initial migrate, which will also execute any required migrations:
createdb -E UTF-8 rapidsms_website python manage.py migrate
You should now be able to run the development server:
python manage.py runserver
create docker image and push on github:
update version in Makefile make release
run docker-compose using images:
docker-compose pull docker-compose up
You can run the tests via:
python manage.py test src/