Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miyucy/oppia
mirror of https://code.google.com/p/oppia/
https://github.com/miyucy/oppia
Last synced: 6 days ago
JSON representation
mirror of https://code.google.com/p/oppia/
- Host: GitHub
- URL: https://github.com/miyucy/oppia
- Owner: miyucy
- License: apache-2.0
- Created: 2014-02-28T04:01:38.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-01T01:28:12.000Z (about 10 years ago)
- Last Synced: 2023-04-17T11:06:16.098Z (over 1 year ago)
- Language: Python
- Size: 16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
************************************
INSTALLATION
************************************Please refer to https://code.google.com/p/oppia/wiki/GettingStarted for extensive installation instructions. Here is just a short summary for developers who would like to contribute:
First, clone the Oppia repo. We suggest you make a directory called opensource/ within your home folder (mkdir opensource). Then do
cd opensource/
and inside there, follow the instructions at the bottom of this page
https://code.google.com/p/oppia/source/clones
to make your own copy of the Oppia repo on the code.google.com server. This means you will now have a separate repo (say oppia-yourname). You can make any changes you like to this test repo, and they will not affect the original repo (unless you try and push them to the main repo later).
Now go to the code.google.com page for your repo and git clone it to your own computer. The instructions are at
https://code.google.com/r/[YOUR_REPO_NAME]/source/checkout
We suggest you follow the method using .netrc, since it is more convenient. After editing your ~/.netrc file, run
git clone https://code.google.com/r/[YOUR_REPO_NAME]/
You might have to change the name of the downloaded directory to oppia,
mv [YOUR_REPO_NAME] oppia
Then, navigate to oppia/ and install Oppia with
bash scripts/start.sh
************************************
TESTING THE INSTALLATION
************************************Run `bash scripts/test.sh' and `bash scripts/run_js_tests.sh' from the oppia/ folder.
************************************
TROUBLESHOOTING
************************************Q: What should I do if I get a error like this when running start.sh?
ERROR: cannot verify github.com's certificate, issued by `/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV CA-1':
Unable to locally verify the issuer's authority.
To connect to github.com insecurely, use `--no-check-certificate'.A: Open scripts/install_third_party.sh with your favorite text editor and replace
`wget' by `wget --no-check-certificate' everywhere. Then run `bash scripts/start.sh' again.