A modern way for nonprofits to manage project activities and indicator results.
Try out Activity using our hosted version at hikaya.io.
This is the source code that runs the Activity application. If you want to use Activity then you don't need to run this code, we offer a hosted version of the app at activity.hikaya.app.
If you'd like to run your own copy of Activity or contribute to its development then this is the place for you.
Note: You should use Python 3.7.5
for this project, meaning you may need to use python3
or pip3
in the following instructions (you can use the package manager on your OS, brew for mac, to install python 3).
Open up your terminal and follow the instructions listed below.
See these instructions for additional information.
Navigate to the folder you want the repository to be stored in.
Run the following command:
$ git clone --branch develop https://github.com/hikaya-io/activity.git
Once cloned, navigate to the cloned repository with:
$ cd activity
or similar for your OS.
You can setup virtual environment either using virtualenv
or pipenv
.
$ pip install virtualenv # Install virtualenv
$ virtualenv -p python3.7 <myvirtualenvironmentname> # Create your virtual environment
$ source <myvirtualenvironmentname>/bin/activate # Activate your virtual environment on Linux...
$ source <myvirtualenvironmentname>/script/activate # ... or on Windows
$ pip install -r requirements.txt # Install the dependencies
Virtualenv will take care of:
- managing the project's dependencies in isolation from the system's packages
- providing a new Python binary/executable with the version specified (check this using
which python
on Linux andpython --version
)
$ pip install pipenv # Install pipenv
$ pipenv shell # Create and activate the pipenv environment
$ pip install -r requirements.txt # Install the dependencies
Copy the example config:
$ cp activity/settings/local-sample.py activity/settings/local.py
Edit database settings activity/settings/local.py as shown below.
We will change the ENGINE
parameter to the default value for postgres (although you can also use MySQL or SqlLite3 which is out-of-the-box supported by Django). We also need to add a default database name in the NAME
option.
Since postgres is the preferred database for this project, we have provided extra instructions to help you set it up. These can be viewed here.
47 DATABASES:
48 'default': {
49 #'ENGINE': 'django.db.backends.postgresql', # Alternatives: 'postgresql', 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
50 'ENGINE': "django.db.backends.postgresql"
51 'NAME': os.environ.get('ACTIVITY_CE_DB_NAME', 'mydatabasename'), # replace mydatabasename here with the name of your database
52 # The following can be left unchanged for local use:
53 'USER': os.environ.get('ACTIVITY_CE_DB_USER', ''),
54 'PASSWORD': os.environ.get('ACTIVITY_CE_DB_PASSWORD', ''),
55 'HOST': os.environ.get('ACTIVITY_CE_DB_HOST', ''),
56 'PORT': os.environ.get('ACTIVITY_CE_DB_PORT', ''),
To set up the database, we can use Django's migrations, which take care of propagating the defined models into our database schema:
$ python manage.py migrate
A superuser is necessary to access Django's administration panel. To create one, use the following:
$ python manage.py createsuperuser
You can use the superuser you created to authenticate into the Django panel in http://localhost:8000/admin once you launch the API.
In the fixtures
folder, you can find JSON files that define sample data to populate the database, after setting its schema.
Here are a few essential fixtures to load:
$ python manage.py loaddata fixtures/auth_groups.json # Add authorization groups
$ python manage.py loaddata fixtures/countries.json # Add countries
$ python manage.py loaddata fixtures/sectors.json # Add sectors
If you're using more then one settings file change the manage.py
file to point to local or dev file first.
$ python manage.py runserver
This will run the server on http://127.0.0.1:8000
Once you have created your user account, you need to create an Activity User
that is linked to this user account.
Go to http://127.0.0.1:8000/admin and sign in using your superuser account. Under the Workflow
app, you'll find Activity users
. Create a new ActivityUser
instance and make sure you associate your user under the User
attribute.
Before launching the dashboard on http://127.0.0.1:8000, you need to log out of the admin account first.
This is to avoid an AttributeError
.
Log in using the same Admin credentials you used on the dashboard login page.
$ docker-compose build
$ docker-compose up
You can add the -d
flag to run the container in detached mode
$ docker-compose up -d --build
If docker is exiting due to postgres connection issues. Stop your local postgres instance, then rerun the above command
$ docker-compose exec web python manage.py createsuperuser
- Before logging in to the application you will need to go to the admin console (http://localhost:8000/admin/).
- Navigate to
Workflow > Activity users
and add an Activity user. - Make to sure to select the superuser name you created earlier.
- Please make sure to log out of the admin console to avoid
AttributeError
. - Go back to the main page to log in and create an organization to access the main dashboard (http://localhost:8000/)
$ docker-compose exec web python manage.py [operation]
The operation
in this case can be: makemigrations
, migrate
, collectstatic
etc
On MacOS:
$ brew update
$ brew install postgresql
$ initdb /usr/local/var/postgres
$ pg_ctl -D /usr/local/var/postgres start
$ createdb <mydatabasename>
On Windows:
- Download and install the latest stable installer for PostgreSQL
- You can use the SQL Shell that comes along with the application to run the following commands
- To create a database run the command
$ create database <mydatabasename>;
pg_ctl -D /usr/local/var/postgres start # to start
pg_ctl -D /usr/local/var/postgres stop # to stop
- GDAL
On MacOs:
$ brew install gdal
On Windows:
- You will need to download Gdal Core and Gdal installer for your version of Python.
- Please read the following instructions on how to properly install and test gdal.
- Pango
On MacOs:
$ brew install pango
On Windows:
- You will need Pango and Cairo for the application to run.
- The runtime installer can be found here
- Download and install GTK+-3.
Activity is built and maintained by the team at Hikaya.
Feel free to checkout and learn more about:
We are always looking for a fresh set of 👀 who want to contribute to Activity, so if you are interested, you can reach out and create an issue and we'll help you get started!