-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extend contributing.md #18
Comments
Good idea, |
So, I have tried next steps on clean Ubuntu 18.04. You need:
sudo apt-get install curl redis-server python3-dev python3-pip python3-venv libldap2-dev libsasl2-dev -y
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt-get install code -y
git clone https://github.com/opencv/cvat
cd cvat && mkdir logs keys .vscode
python3 -m venv .env
. .env/bin/activate
pip install --upgrade wheel
pip install -r cvat/requirements/development.txt
python manage.py migrate
python manage.py collectstatic
python manage.py createsuperuser
code In visual studio code:
We will update contributing.md in near future. |
I had some problems following the instructions; I could fix the first 2, but got stuck on the third. You might want to update the instructions related to the first 2 issues. Hopefully someone can help me over the 3rd one. OS: Ubuntu 19.04
Following the instructions here helped:
Installing node and npm helped.
Any ideas? PS. cvat/.vscode/launch.json file already existed in Git, this step is unnecessary. |
Hi @raunilillemets , we cannot support different OS for development. At the moment internally all engineers are using Ubuntu 18.04 (LTS). If you want to use Ubuntu 19.04 it is necessary to investigate on your own. @bsekachev , could you please help with cvat.js? |
@raunilillemets |
Thanks @bsekachev. Well, some of things which I mentioned are likely also relevant on Ubuntu 18.04. Anyway, after running
Any clues? |
@raunilillemets |
The suggestions there did not help, still had the same issues. But I noticed that there are 2 really similar profiles: I was using the first one and getting errors; I tried the second one and it seems to work (at least I got into the login page). I will continue using the second one. |
Hi,
Could you, please, describe / suggest development / testing steps.
In particular, how would one perform edit - update - run (debug) cycle for both server and client parts.
The text was updated successfully, but these errors were encountered: