Skip to content

Latest commit

 

History

History
118 lines (76 loc) · 2.05 KB

File metadata and controls

118 lines (76 loc) · 2.05 KB

Fractal Labs

Make technology really work for your business

Installation

Setup a virtualenv and install requirements (this example uses virtualenvwrapper):

mkvirtualenv fractal_labs -p python3.11
pip install -r dev-requirements.txt

Set up database

Create database migrations:

./manage.py makemigrations

Create database tables:

./manage.py migrate

Running server

./manage.py runserver

Building front-end

To build JavaScript and CSS files, first install npm packages:

npm install

Then build (and watch for changes locally):

npm run dev-watch

Running Celery

Celery can be used to run background tasks.

Celery requires Redis as a message broker, so make sure it is installed and running.

You can run it using:

celery -A fractal_labs worker -l INFO

Or with celery beat (for scheduled tasks):

celery -A fractal_labs worker -l INFO -B

Updating translations

Docker:

make translations

Native:

./manage.py makemessages --all --ignore node_modules --ignore venv
./manage.py makemessages -d djangojs --all --ignore node_modules --ignore venv
./manage.py compilemessages

Google Authentication Setup

To setup Google Authentication, follow the instructions here.

Installing Git commit hooks

To install the Git commit hooks run the following:

$ pre-commit install --install-hooks

Once these are installed they will be run on every commit.

For more information see the docs.

Running Tests

To run tests:

./manage.py test

Or to test a specific app/module:

./manage.py test apps.utils.tests.test_slugs

On Linux-based systems you can watch for changes using the following:

find . -name '*.py' | entr python ./manage.py test apps.utils.tests.test_slugs