Skip to content

bardapp/lyricist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lyricist

The backend programs built for Bard

Tooling

Because this is a TypeScript project, we're using ts-node-dev to compile the packages as we write them. To start the system, just run yarn dev.

We also use Prettier. There's a .prettierrc file in this repo containing the configuration for that, and if you have the VSCode extensions installed, we also have editor.formatOnSave set to true in the workspace config file & the editor.defaultFormatter set to use Prettier.

We also include a Docker Compose file and Dockerfiles for each package, which are easy to use. The easiest way to use them would be to run docker-compose up -d, but you can build each package individually with the docker build . -f packages/<package-name>/Dockerfile -t package-name command.