Changes between Version 3 and Version 4 of InstallationGuidelines/PythonAnywhere
- Timestamp:
- 06/26/14 22:35:04 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/PythonAnywhere
v3 v4 6 6 - Select the directory where you want to put the files of your app (By default it is /home/your_username/web2py/) 7 7 - Enter the administrative password. 8 - You will be issued with a domain which can be used to access your web2py app. (In case of a free account, it will be your_username.pythonanywhere.com)8 - You will be issued with a domain which can be used to access your web2py server. (In case of a free account, it will be your_username.pythonanywhere.com) 9 9 5. After completing configuration, go to Files tab 10 6. There you will find a folder as specified by you in settings10 6. There you will find a folder as specified by you in the configuration settings (web2py if you chose default settings) 11 11 7. Go to Your_Folder/applications 12 8. Here you can upload your Eden folder. 13 9. The alternative is to compress your project folder on your own PC, and upload it using the Files tab. Then, open a Bash console to run unzip to decompress the zipfile you've uploaded. 14 10. You can also pull code from github 12 8. Here you can upload your Eden folder. 13 9. You can directly pull code from github 15 14 - Go to Consoles tab and open Bash editor 16 15 - Go to applications directory of your web2py project(cd your_app_folder/applications/) 17 16 - $ Clone the repo you want to deploy : git clone https://github.com/username/repo_name 18 11. You have are now good to go and start the web2py server 17 10. You can also compress your project folder on your own PC, and upload it using the Files tab. Then, open a Bash console to run unzip to decompress the zipfile you've uploaded. 18 11. You now have the web2py application you want to test ready for deployment. You can now go on and start the web2py server. 19 19 12. Go to /home/your_username/web2py/ using the bash editor 20 20 13. Run the following command: … … 22 22 14. This will start the web2py server on your created domain for this app (https://your_username.pythonanywhere.com/ in case of a free account) 23 23 15. You can now navigate to other tabs(or do other things) and the bash console will keep running as a separate thread. In order to kill the current console you can go to "Console" tab and kill the desired bash console from the list. 24