-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from chr-hertel/gpt-context
Split GPT context in system and user prompts
- Loading branch information
Showing
3 changed files
with
841 additions
and
819 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,15 +20,15 @@ Setup | |
**Steps** | ||
|
||
```bash | ||
$ git clone [email protected]:chr-hertel/decomplex.git | ||
$ cd decomplex | ||
$ composer install | ||
$ npm install | ||
$ npm run dev | ||
$ docker-compose up -d | ||
$ symfony console doctrine:database:create | ||
$ symfony console doctrine:migration:migrate --no-interaction | ||
$ symfony console doctrine:database:create --env=test | ||
$ symfony console doctrine:migration:migrate --env=test --no-interaction | ||
$ symfony serve -d | ||
git clone [email protected]:chr-hertel/decomplex.git | ||
cd decomplex | ||
composer install | ||
npm install | ||
npm run dev | ||
docker-compose up -d | ||
symfony console doctrine:database:create | ||
symfony console doctrine:migration:migrate --no-interaction | ||
symfony console doctrine:database:create --env=test | ||
symfony console doctrine:migration:migrate --env=test --no-interaction | ||
symfony serve -d | ||
``` |
Oops, something went wrong.