CentreForDigitalHumanities / cookiecutter-webapp-deluxe

BSD 3-Clause "New" or "Revised" License
1 stars 1 forks source link
angular django web-development

cookiecutter-webapp-deluxe

Actions Status

A boilerplate for full-fledged web applications with Django backend, Angular frontend and Selenium functional tests.

Before you start

You need to install at least the following software:

This is the minimum for Cookiecutter to be able to do its work, i.e., generate a tree of source files. However, cookiecutter-webapp-deluxe includes a post-generation script that automates the other work that comes with starting up a new project, such as creating a new database and installing packages. In order for it to be able to do as much as possible for you, it is recommended that you also install all of the following software before generating a project:

After generating a new project with this cookiecutter, you'll find a README in the root of the project that mentions two more dependencies not yet listed above. The post-generation script does not depend on them, but you'll likely need them at some later point while developing or deploying the generated project.

These are all the external dependencies you'll need during or after project generation that have to be installed manually.

Usage

Quickstart

$ cd to/parent/directory/that/contains/all/your/projects/
$ cookiecutter gh:CentreForDigitalHumanities/cookiecutter-webapp-deluxe --checkout develop
# (the plan is to change the latter command into `dh init`)

This will first ask you for the template parameter values, then generate a file tree and finally run the post-generation script.

Template parameters that will be asked

project_title

The "pretty" name of your project, intended for human audiences.

slug

The "technical" name of your project, intended for file names, package names, variable names, etcetera. Should match the regular expression ^[a-z][a-z0-9_]*$. The root directory of the generated project will have this name, too.

app_prefix

The app prefix to use in Angular.

description

A one-liner that describes what your project is about.

author

The name(s) of the person(s) or legal entity that will initially own the copyright over the generated project. Please note that a BSD 3-Clause license is generated; if you wish to use a different license, you have to replace it manually.

origin

The URL of the main public Git repository where your project will be hosted and where you'll be pushing your local branches to. The repository need not exist yet; the post-generation script will not attempt to push to it. You can use the NPM package.json repository URL shorthand for GitHub.

database_{name,user,password}

Respectively the database name for your local development database and the name and password of the local database user that will be granted access to that database. The names and password will be hardcoded into your source tree, so other developers will be using the same values for their local development databases. The values are not used for deployment, so you can keep different, secret names and password in production.

There is, in fact, no reason why you'd need to override these values; the parameters will likely be removed from the interactive asker in the future.

localizations

Frontend languages for which you'd like to generate localization files initially. You can still add more languages later. The parameter is encoded as code:name pairs separated by commas, where each code must be an IETF language tag that i18next can recognize and each name a speaking, human-recognizable slug that can be used as a variable name.

frontend

The frontend framework to use.

{frontend,backend}_port

The default port to use when locally running a frontend or backend server.

psql_command

A command that can be called in order to run SQL queries against your local PostgreSQL server. This will be used to set up your local development database. This command is not stored in the repository; other people who clone your project will have to enter their own psql_command.

It is important that this command can be run with your own account, i.e., without elevated privileges. In other words, it should not start with sudo.

The default of psql only works if psql is in your PATH environment variable and you have configured the PostgreSQL server such, that your own OS username is also your PostgreSQL username, you have a default database by the same name and you can login with peer authentication. Otherwise, you may have to provide the fully-qualified path to your psql executable and/or use options such as -U and -d.

If all of this is abacadabra to you, don't worry and just ignore the parameter. If the command fails, it is easy to fix afterwards. This is discussed in the section on the post-generation script.

virtualenv

Path to the virtualenv that will be created for your local clone of the project. If you provide a relative path, it will be resolved against the root of the generated project. An absolute path is also allowed. The path is not stored in the repository; people who clone your project can put their own virtualenvs in different locations.

Many people create a .env inside the root of each project. For this reason, this path is suggested as the default. .env is also in the .gitignore of the generated project, so it will not be committed to VCS by accident. However, any other path will work equally well, especially if you place it outside of the project root. If you have a central place for storing all your virtualenvs, by all means use it.

The post-generation script needs to know the path to your virtualenv, but you are still in full control of how the virtualenv will be created. For example, you can use Anaconda if you so wish. This is the purpose of the next parameter.

virtualenv_command

The command that will generate the virtualenv in the location that you provided in the previous parameter. This command will run with the root of the generated project as its working directory. It is important that you can run this command as yourself, i.e., without sudo.

The virtualenv must have Python version >= 3.8, <= 3.10. If your virtualenv-creating command uses a different version by default, make sure to add an option to rectify this. The most commonly used command, virtualenv, has the -p option, so you can for example append -p python3.10.

Post-generation script

After asking the parameters, Cookiecutter generates your project in an instant and then immediately continues executing the post-generation script. Since you don't get the opportunity to inspect the project before the script starts, we discuss the script first.

The post-generation script attempts to execute all of the following steps for you automatically, so you can get started developing your new project as soon as possible:

The script is capable of graceful degradation. If any step fails, it will continue with other steps that don't depend on it. A log of all automated commands is kept in case you need to debug failed steps (bootstrap.log).

In the end, the script will list the commands that still have to be executed by you. There will be at least four such commands, because the script always leaves four steps to you. If any of the automated steps failed, there will be more commands for you to be executed. More on this below.

Some of the automated steps, such as creating a virtualenv, installing packages and creating a development database, also have to be executed by teammates when they clone your project. For them, a similar script called bootstrap.py is included in the root of the generated project. In fact, the post-generation script imports common functionality from the generated bootstrap.py.

Running the post-post-generation commands

The commands that the script lists for you are supposed to work if you copy them verbatim in the order shown. You should execute them one at a time, because a command may depend on external conditions which haven't been met or which the script cannot check for you. In some cases, you may also need to modify a command in order to make it work.

The commands all rely on external software and documenting them in full detail is beyond the scope of this README. The most important gotchas are listed below.

The generated project

The generated project is a directory with the name that you entered as the slug. This directory is placed within the working directory in which you invoked the cookiecutter.

The root directory of the generated project contains a bootstrap.py which teammates can use after cloning the repository. If you ran either the post-generation script or the bootstrap.py, the project root also contains a bootstrap.log with details about the automated setup steps.

The project root contains many more things, one of them being the project's very own README. Please consult that README for further information on working with the project.

Development

While in theory, it is possible to develop this cookiecutter with a test-driven approach, it is almost certainly less work to just make your changes, generate a test project and keep adjusting until you get the desired result. This may change once the design is modularized into multiple smaller cookiecutters within an overarching command line utility (dh init). For now, some tips are provided for the "trial and error" approach.

In any case, you will need to make a local clone of the cookiecutter. When generating a test project, use your local clone instead of the one on GitHub. It's as simple as passing the path to the Cookiecutter command:

$ cookiecutter path/to/your/local/clone/of/cookiecutter-webapp-deluxe

If you are going to generate many test projects in quick succession, the following tricks can help to make your work efficient and cleanup easy: