@deshraj @taranjeet I was going through some of the docs in the past few days, so I found that we can have a section for Frequently Asked Questions in our docs which can contain the solutions to the doubts asked by the new contributors on our gitter channel. What are your views about it.
@RishabhJain2018 Good idea.
Plus there were some issues with the readme as well, I noticed some commands which aren't necessarily needed for setting up the project.
@RishabhJain2018 this sounds like a great idea. @RishabhJain2018 / @the-dagger please feel free to take lead on adding this to the docs section.
Thanks, will proceed with it :)
On Monday, August 7, 2017, Deshraj Yadav notifications@github.com wrote:
@RishabhJain2018 https://github.com/rishabhjain2018 this sounds like a
great idea. @RishabhJain2018 https://github.com/rishabhjain2018 /
@the-dagger https://github.com/the-dagger please feel free to take lead
on adding this to the docs section.โ
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/Cloud-CV/EvalAI/issues/1130#issuecomment-320570878,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AGQtlqZG49qoTwuGMxt-qVEvfjT7ksO-ks5sVp4jgaJpZM4Ouzbg
.
--
Best,
Harshit Dwivedi
@the-dagger Can you please list down the commands in the readme that are not necessary for setting up the project.
Also, the logo in readme isn't loading properly in mobile view of the website.
It loads well in desktop view.

I think that we should be using direct raw links for the image files so that it works on both mobile and desktop view.
@RishabhJain2018 For example, while creating virtual env, you need to navigate to the upper directory using cd .. before executing pip install -r requirements/dev.txt
This isn't listed in the readme.
Plus you need to start the Postgres server before running the backend, that isn't mentioned either.
P.S. to rephrase my original comment, we have some missing commands. ๐
I think @the-dagger is perfect for this. Since he is new to the codebase, going through the doc will actually help him in getting a better understanding of the project.
@the-dagger You can create the virtualenv in the project's directory also. So, I think these steps are correct. Moreover, we can mention about the postgres server. @deshraj @taranjeet What do you say ?
@RishabhJain2018 yes, that's correct.
But the Readme asks the user to navigate to evalai directory before creating a virtual environment.
If you can create a virtual environment in the project directory, then we should remove this.
Thanks, @the-dagger @RishabhJain2018
Some pointers that you can look:
evalai folder. Hence, we should mention cd.. command before running pip installsudo -i -u (username) fails for anyone who setup the project as there is no mention what does username refers to here.[ ] After setup, every time the user has to run the same commands
1. cd EvalAI/evalai
2. source venv/bin/activate
3. python manage.py runserver --settings=settings.dev
There should be one run.sh that can handle this stuff for the user.
@deshraj @taranjeet Please suggest any further changes.
First let us be very clear on what our directory structure is. I am calling the root folder as the folder where you can find manage.py file. For more clarity, this is root folder
โโโ CODE_OF_CONDUCT.md
โโโ LICENSE
โโโ README.md
โโโ apps
โโโ bower.json
โโโ bower_components
โโโ docker
โโโ docker-compose.dev.yml
โโโ docker-compose.yml
โโโ docs
โโโ evalai
โโโ examples
โโโ frontend
โโโ gulpfile.js
โโโ karma.conf.js
โโโ manage.py
โโโ media
โโโ middleware
โโโ node_modules
โโโ package.json
โโโ pytest.ini
โโโ requirements
โโโ scripts
โโโ settings
โโโ setup.cfg
โโโ static
โโโ tests
โโโ user.csv
โโโ user.json
โโโ uwsgi.ini
โโโ uwsgi_params
โโโ venv
Just clarifying here
There is no file dev.txt available inside the virtual env, which we create by going inside the evalai folder. Hence, we should mention cd.. command before running pip install
No such file needs to be present in virtual env folder. Also if you carefully follow instructions in the readme, you can see that we are cloning EvalAI in a folder named evalai. Hence the cd evalai is a one time step which means that doing that you enter the project root directory. I am sure perfectly sure pip install -r requirements/dev.txt is accessible from there as requirements folder is there in the root directory.
There is no mention of any Python version.
Sure please do that, Also there are some badges for it as well.
The command sudo -i -u (username) fails for anyone who setup the project as there is no mention what does username refers to here.
The username is self-explanatory. Still if there is doubt you can try using $(whoami) and replace it. I think that will solve your problem.
After setup, every time the user has to run the same commands
Just one correction here, you do not need to enter evalai directory. You can write a runserver.shwhich activates the virtual environment and runs the runserver command.
@aayusharora @the-dagger
@taranjeet Thanks for this.
No such file needs to be present in virtual env folder. Also if you carefully follow instructions in the readme, you can see that we are cloning EvalAI in a folder named evalai. Hence the cd evalai is a one time step which means that doing that you enter the project root directory.
After cloning, we get the folder EvalAI not evalai. The folder evalai is present inside this root folder.
I am sure perfectly sure pip install -r requirements/dev.txt is accessible from there as requirements folder is there in the root directory.
We need to go to evalai by doing cd evalai and then have to run pip install.

Just one correction here, you do not need to enter evalai directory
Yes, this seems correct. We can activate the virtual env outside the directory as well. Thanks for pointing out.
You are missing evalai in the clone command
Please find the complete command here
git clone https://github.com/Cloud-CV/EvalAI.git evalai
Thanks @taranjeet, Got this now.
@deshraj @RishabhJain2018 This FAQ is for developers or end users only?
@gautamjajoo Developers who are trying to build the project.
@the-dagger Is #1455 correct for this issue.
@gautamjajoo try to make it more focused on Questions related to setting up the project.
Check the gitter channel once, there may be some newcomers who are unable to build the project.
Try to see what issues they are facing and outline them in the FAQ.
You can use the current FAQ submitted in the PR as a base and build upon it.
@deshraj What do you say?
@the-dagger: Totally agree.
@gautamjajoo #1455 is good for this issue but you need to change the location of the file from .github/FAQ.md to docs/source/FAQ.md. It would be similar to what you have done in the "Tutorial for Participate in challenge."
@deshraj Ok. Will work upon this issue and will send the PR related to it. And will also add more setup issues.
Most helpful comment
I think @the-dagger is perfect for this. Since he is new to the codebase, going through the doc will actually help him in getting a better understanding of the project.