A simple build system to create the SQLite db file used by my rest-demo-*-backend repos
- git - version 1.7.10 or later recommended
- SQLite - version 3.1.0 or later
- GNU Make - version 3.80 or later
Run the following commands:
git clone https://github.com/bmarcotte/rest-demo-sqlite-database.git
cd rest-demo-sqlite-database
make
That should produce a bookmarks.db
file in the current directory.
You can also run:
make dumps
or
make bookmarks.dump
...to produce a dump file, bookmarks.dump
, which can be compared to the original bookmark.sql
to confirm that the database contains roughly equivalent content to what was original declared. The .dump
file and the .sql
file should only have whitespace differences.
- Ben Marcotte - bmarcotte
This project is licensed under the MIT License - see the LICENSE.md file for details