...
Once an institutional project exists (typically, it will be called something like myinstitution_project)
, you can check the code for it out from GitHub and do what you need to do on your local system. In general, we don't modify code directly on our VM deployments. The process of getting your code back into a GitHub repo and making deployments and releases is described further below.
- From PyCharm checkout the project; from the command line: git clone http://github.com/cspace-deployment/myinstitution_project.git
- Open this directory in PyCharm
- Configure the project to run locally (i.e. created needed local infrastructure (directories, etc.), local configuration files, etc.)
- Run the development server or debugger in PyCharm
Creating of a new webapp for an existing project
...