https://github.com/flavien-hugs/dj-nuxt-shorten-url
Django with NuxtJs app shorten url
https://github.com/flavien-hugs/dj-nuxt-shorten-url
django-nuxt django-rest-framework
Last synced: 7 months ago
JSON representation
Django with NuxtJs app shorten url
- Host: GitHub
- URL: https://github.com/flavien-hugs/dj-nuxt-shorten-url
- Owner: flavien-hugs
- Created: 2022-06-27T12:05:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-27T21:46:39.000Z (over 3 years ago)
- Last Synced: 2025-02-03T13:44:20.559Z (9 months ago)
- Topics: django-nuxt, django-rest-framework
- Language: Python
- Homepage:
- Size: 101 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## [django nuxtjs app shortener url](https://github.com/flavien-hugs/dj-nuxt-shorten-url.git)
[](https://www.djangoproject.com)
[](https://www.python.com)
[)]
[dj-nuxt-shorten-url](https://github.com/flavien-hugs/dj-nuxt-shorten-url/) is a small shortener url system application.
#### backend: Installation & Execution of the project locally
```bash
$ git clone https://github.com/flavien-hugs/dj-nuxt-shorten-url.git
$ cd dj-nuxt-shorten-url
$ pipenv shell && pipenv install
$ cd backend
$ ./manage.py makemigrations && ./manage.py migrate
$ ./manage.py runserver#### frontend: Installation & Execution of the project locally
```bash
# install dependencies
$ cd frontend
$ npm install# serve with hot reload at localhost:3000
$ npm run dev# build for production and launch server
$ npm run build
$ npm run start# generate static project
$ npm run generate
```Good code :)