sabuein / palestine-riders

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

palestine-riders

  • Runtime environment: Node 16.18.1 (LTS)
  • Package manager: npm 9.6.1
  • Web application framework: Express 4.18.2

Scripts

# Start Express
npm run api

SQL

CREATE DATABASE palestine_riders;
USE palestine_riders;
CREATE TABLE riders (id INT NOT NULL AUTO_INCREMENT, name VARCHAR(50) NOT NULL, email VARCHAR(50), PRIMARY KEY (id));
SHOW TABLES;
DESCRIBE riders;
INSERT INTO riders VALUES (1, "Salaheddin AbuEin", "sabuein@gmail.com");
SELECT * FROM riders;
CREATE USER "riders"@"localhost" IDENTIFIED BY "myPassword";
GRANT ALL PRIVILEGES ON palestine_riders.* TO "riders"@"localhost";
\q

Resources

About

License:MIT License


Languages

Language:TypeScript 100.0%