Quickstart¶
First steps required for a webscaff managed project bootstrap are not really
webscaff related but rather about setting up thirdparties, so be patient.
1. SSH key¶
If you don't have one yet, please generate it, because you'll need it in further steps.
Print out a public key part to console using (example for a default key name):
2. Code hosting¶
Pick a hosting for your Git repository (e.g. GitHub, GitLab) public or private.
To access your repository you'll use SSH key, so you need to use one from step 1 and register its public part on code hosting service.
Create a project there and remember SSH address (Clone or download green button on GitHub).
We'll need it soon. Example: git@github.com:idlesign/myproject.git
3. Project hosting¶
You'll probably need a VPS hosting for your webservice, so you need to pick one (e.g. Yandex Cloud, DigitalOcean).
There make sure that SSH auth implies using SSH keys, but not password. So you'll need to upload your public key part from step 1, and choose a name. For convenience, it's advised to use the same name you're logged in.
Remember your IP address. We'll need it soon.
4. Domain name¶
You can use a free domain name or register a paid one via a provider. Do not forget to target your domain name (DNS settings) to your IP address (see step 3).
Remember your domain name. We'll need it soon.
5. Local bootstrap¶
webscaff is configurable but for convenience it largely relies
on various conventions.
You may quickly create a basic project skeleton using webscaff
template of makeapp - https://pypi.org/project/makeapp:
This will run myproject skeleton creation in /home/some/here.
Warning
It is advised not to use the same name you're logged in as a project name to avoid confusion.
You'll be asked for information you gathered in previous steps.
makeapp will also ask you for a code repository address (step 2).
Note
If you preferred to push your repository manually do not forget to do it before going further.
6. Remote initialization¶
Now cd into your project directory (it'll contain wscaff.yml, for example /home/some/here).
Let's make sure configuration is success:
If everything is fine and your VPS is up and running this command will print out some basic information about your remote system.
Now we're ready for remote system initialization:
The initialization process is done in two steps. Please follow the instructions.
If you're lucky after this step you'll be able to access you webservice using your domain name both via HTTP and HTTPS.
7. Basic usage¶
- Develop your code locally. Use virtual environment from
venv/directory. - Push a new version to remote repository.
-
Rollout that version on server right from the repository:
This will get code from the repository, gather Django static files, apply DB migrations and reload uWSGI.
-
If you want to get a backup (user media, DB, certificates) locally:
Backup archives are stored in
state/dumpsdirectory. -
Other basic commands:
-
Run
webscaffwithout arguments to get available commands list.