Epróba is Django web app for managing scouts worksheets from website.
You can run this app in any system with python installed.
First make sure you have installed python in min. version 3.7 or recommend 3.12
- Clone repository to your disk using
git clone [email protected]:eproba/web.git
- Navigate to repo directory:
cd eproba
- Create virtual environment using python venv
venv eproba
and activate it (source eproba/bin/activate
) - Install dependencies:
pip3 install -r requirements.txt
- Create migrations:
python manage.py makemigrations
- Make migrations:
python manage.py migrate
- Copy static files to your static directory:
python manage.py collectstatic
- Run the standard tests. These should all pass:
python manage.py test
- Create admin account:
python eproba/manage.py createsuperuser
- Start server:
python eproba/manage.py runserver
First make sure you have installed git and python in min. version 3.7 or recommend 3.12.
If you are using Windows 10 or Windows 11, you can download python from the Microsoft store.
- Clone repository to your disk using
git clone [email protected]:eproba/web.git
- Navigate to repo directory:
cd eproba
- Create virtual environment using python venv (available from python 3.3)
venv eproba
and activate it (eproba/bin/activate.bat
) - Install dependencies:
pip3 install -r requirements.txt
- Create migrations:
python manage.py makemigrations
- Make migrations:
python manage.py migrate
- Copy static files to your static directory:
python manage.py collectstatic
- Run the standard tests. These should all pass:
python manage.py test
- Create admin account:
python eproba/manage.py createsuperuser
- Start server:
python eproba/manage.py runserver