Skip to content
Snippets Groups Projects

Add development readme. Closes #12.

Closed Martin Gummi requested to merge issue12 into master
3 unresolved threads

Merge request reports

Closed by Tom TeichlerTom Teichler 5 years ago (Jul 17, 2019 12:16am UTC)

Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
DEVEL-README.md 0 → 100644
1 # Development readme
2
3 Basic setup for development.
4 Use a virtual environment.
5
6 `virtualenv -p python3 --system-site-packages venv`
  • DEVEL-README.md 0 → 100644
    2
    3 Basic setup for development.
    4 Use a virtual environment.
    5
    6 `virtualenv -p python3 --system-site-packages venv`
    7 `source venv/bin/activate`
    8
    9 Install BiscuIT via pip.
    10
    11 `pip install .`
    12
    13 Run a development server
    14
    15 `python3 manage.py runserver`
    16
    17 Migrate all data models of apps to database
  • DEVEL-README.md 0 → 100644
    1 # Development readme
    2
    3 Basic setup for development.
    4 Use a virtual environment.
    5
    6 `virtualenv -p python3 --system-site-packages venv`
    7 `source venv/bin/activate`
    8
    9 Install BiscuIT via pip.
    10
    11 `pip install .`
    12
    13 Run a development server
    14
    15 `python3 manage.py runserver`
  • I would suggest looking into using pipenv instead. Also, this should probably become sphinx-based docs.

  • assigned to @nik

  • closed

  • Please register or sign in to reply
    Loading