-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sebastian Reck
committed
Mar 29, 2024
1 parent
bab8040
commit f2ba7ce
Showing
1 changed file
with
46 additions
and
0 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 |
---|---|---|
@@ -1,3 +1,49 @@ | ||
# 2a5-app | ||
|
||
See 2a5-api first | ||
|
||
Docker container are running | ||
|
||
2a5-api-development 3000 | ||
2a5-db-development 5432 | ||
|
||
|
||
|
||
|
||
# Development | ||
You need to install on your local workstation: | ||
- git | ||
- nodejs | ||
- npm | ||
- docker | ||
|
||
Clone the repository: | ||
```bash | ||
git clone https://github.com/reckseba/2a5-app.git | ||
``` | ||
|
||
Install your environment | ||
```bash | ||
cd 2a5-app | ||
npm install | ||
``` | ||
|
||
Run the nodejs development server: | ||
```bash | ||
npm run dev | ||
``` | ||
|
||
Start coding and open [http://localhost:3001](http://localhost:3001) with your browser of choice to check the result. The system supports hot reload. | ||
|
||
|
||
Stop it with CTRL+C | ||
|
||
|
||
|
||
|
||
# Cleanup locally | ||
|
||
Delete all generated files | ||
```bash | ||
rm -rf .next/ node_modules/ next-env.d.ts | ||
``` |