Udacity: Difference between revisions

From Wiki RB4
Line 15: Line 15:
  create user fyyur with encrypted password 'fyyur';
  create user fyyur with encrypted password 'fyyur';
  grant all privileges on database fyyur to fyyur;
  grant all privileges on database fyyur to fyyur;
* in <code>C:\Uwes\python\UdacityFullWebDeveloper\FSND\projects\01_fyyur\starter_code</code>
python -m virtualenv env
* to run the app
* to run the app
  .\env\Scripts\activate
  .\env\Scripts\activate

Revision as of 21:25, 11 October 2021

Courses

Full Stack Web Developer

  • C:\Uwes\python\UdacityFullWebDeveloper

ToDo App

Fyyur App

  • run as prepartion (rest was already installed for lesson)
pip3 install virtualenv
npm install bootstrap@3
  • execute Development Setup from GitHub
  • with psql
create database fyyur;
create user fyyur with encrypted password 'fyyur';
grant all privileges on database fyyur to fyyur;
  • in C:\Uwes\python\UdacityFullWebDeveloper\FSND\projects\01_fyyur\starter_code
python -m virtualenv env
  • to run the app
.\env\Scripts\activate