Skip to content

Commit 4cea892

Browse files
committed
remove mentions of nextjs
1 parent dd27eda commit 4cea892

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/template-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
uses: AndreasAugustin/actions-template-sync@v2
2525
with:
2626
github_token: ${{ secrets.GITHUB_TOKEN }}
27-
source_repo_path: codersforcauses/django-nextjs-template
27+
source_repo_path: codersforcauses/django-vue-template
2828
upstream_branch: main

.vscode/launch.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
"program": "${workspaceFolder}/server/manage.py"
1515
},
1616
{
17-
"name": "Next.js: Run frontend server",
17+
"name": "Vite: Run frontend server",
1818
"type": "node-terminal",
1919
"request": "launch",
2020
"cwd": "${workspaceFolder}/client",
2121
"command": "npm run dev"
2222
},
2323
{
24-
"name": "Next.js: debug browser",
24+
"name": "Vite: debug browser",
2525
"type": "chrome",
2626
"request": "launch",
2727
"url": "http://localhost:3000"
@@ -32,7 +32,7 @@
3232
"name": "Run Server/Client",
3333
"configurations": [
3434
"Python Debugger: Django",
35-
"Next.js: Run frontend server"
35+
"Vite: Run frontend server"
3636
],
3737
"stopAll": true,
3838
"presentation": {

docker/client/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ if [ "${APP_ENV^^}" = "DEVELOPMENT" ]; then
5252
npm install
5353
# Run developments
5454
echo " "
55-
echo "======= Starting inbuilt nextjs webserver ==================================================================="
55+
echo "======= Starting vite webserver ==================================================================="
5656
npm run dev
5757
exit
5858
fi

0 commit comments

Comments
 (0)