Skip to content

Latest commit

 

History

History
61 lines (47 loc) · 1.11 KB

README.md

File metadata and controls

61 lines (47 loc) · 1.11 KB

FULLSTACK WEB DEV WORKSHOP

PDFS

Presentazione: PDF

Intro git: PDF

Intro sviluppo siti django: PDF

GETTING STARTED

  • install git
  • install node
  • install yarn
  • install python
  • install virtualenv (pip install virtualenv)

CLONARE REPOSITORY

git clone https://github.com/inmagik/workshop-its.git

SERVER

Prima installazione

cd museum-server
virtualenv -p python3 env
source env/bin/activate
pip install -r requirements
cd museum_server
cp example_db.sqlite3 db.sqlite3
cp -R example_uploads uploads

Sviluppo:

cd museum-server
source env/bin/activate
cd museum_server
python manage.py runserver

FRONTEND

Prima installazione:

cd museum-frontend
yarn install

Sviluppo:

cd museum-frontend
yarn start

CONTATTI