Skip to content

flavien-hugs/dj-nuxt-shorten-url

Repository files navigation

Django Version Python Version [NuxtJS]

django nuxtjs app shortener url

dj-nuxt-shorten-url is a small shortener url system application.

backend: Installation & Execution of the project locally

$ 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 :)