File tree Expand file tree Collapse file tree 6 files changed +8051
-1
lines changed Expand file tree Collapse file tree 6 files changed +8051
-1
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ LMT-toolkit uses the LMT-analysis code provided on [GitHub](https://github.com/f
7070
7171## Python Requirements (See [ requirements.txt] ( requirements.txt ) )
7272- Django>=4.0.2
73- - djangorestframework==3.13.1
73+ - djangorestframework==3.14
7474- django-filter==21.1
7575- djoser==2.1.0
7676- django-cors-headers==3.11.0
Original file line number Diff line number Diff line change 1+ node_modules
2+ * .log *
3+ .nuxt
4+ .nitro
5+ .cache
6+ .output
7+ .env
8+ dist
9+ .DS_Store
Original file line number Diff line number Diff line change 1+ shamefully-hoist = true
2+ strict-peer-dependencies = false
Original file line number Diff line number Diff line change 1+ # Nuxt 3 Minimal Starter
2+
3+ Look at the [ Nuxt 3 documentation] ( https://nuxt.com/docs/getting-started/introduction ) to learn more.
4+
5+ ## Setup
6+
7+ Make sure to install the dependencies:
8+
9+ ``` bash
10+ # yarn
11+ yarn install
12+
13+ # npm
14+ npm install
15+
16+ # pnpm
17+ pnpm install
18+ ```
19+
20+ ## Development Server
21+
22+ Start the development server on http://localhost:3000
23+
24+ ``` bash
25+ npm run dev
26+ ```
27+
28+ ## Production
29+
30+ Build the application for production:
31+
32+ ``` bash
33+ npm run build
34+ ```
35+
36+ Locally preview production build:
37+
38+ ``` bash
39+ npm run preview
40+ ```
41+
42+ Check out the [ deployment documentation] ( https://nuxt.com/docs/getting-started/deployment ) for more information.
You can’t perform that action at this time.
0 commit comments